@charset "UTF-8";

.footer {
	width: 100%;
	background: white;
	/* border-top: 1px solid #E2E8F0; */
	padding-top: 40px;
}
.skiptranslate{
	display: none !important;
	opacity: 0;
	visibility: hidden;
}
.grecaptcha-badge{
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}
.footer__container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	margin-bottom: 36px;
}

.footer__column {
	display: flex;
	flex-direction: column;
}

.footer__title {
	font-size: 12px;
	color: #1E6BD0;
	font-weight: 600;
	margin-bottom: 16px;
}

.footer__title--spacing {
	margin-top: 32px;
}

.footer__nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__link {
	font-size: 16px;
	color: #0F172A;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__link:hover {
	color: #1E6BD0;
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__phone {
	font-size: 16px;
	color: #0F172A;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__phone:hover {
	color: #1E6BD0;
}

.footer__email {
	font-size: 16px;
	color: #0F172A;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__email:hover {
	color: #1E6BD0;
}

.footer__schedule {
	font-size: 12px;
	color: #475569;
}

.footer__social {
	display: flex;
	gap: 16px;
}

.footer .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	transition: transform 0.2s ease;
	border: 1px solid #0F172A1F;
}

.footer .social-icon:hover {
	transform: scale(1.05);
}

.footer .social-icon svg {
	width: 100%;
	height: 100%;
}

.footer__bottom {
	border-top: 1px solid rgba(15, 23, 42, 0.12);
	padding: 20px 0;
}

.footer__bottom-container {
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.footer__copyright {
	font-size: 12px;
	color: #475569;
}

.footer__ministries {
	display: flex;
	text-align: left;
	gap: 40px;
}

.footer__ministry {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #0F172A;
	text-align: left;
	line-height: 1.4;
}

@media (max-width: 1200px) {
	.footer__container {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.footer__container {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.map-form-grid{
		grid-template-columns: repeat(1, 1fr);
	}
	.map_layer_mask {
		max-height: 500px;
		height: 100%;
}
	.footer__bottom-container {
		flex-direction: column-reverse;
		gap: 16px;
		text-align: center;
	}

	.footer__ministries {
		flex-direction: column;
		gap: 16px;
	}

	.footer__ministry {
		text-align: center;
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.footer {
		padding-top: 24px;
	}

	.footer__container {
		gap: 20px;
	}

	.footer__title {
		margin-bottom: 12px;
	}

	.footer__title--spacing {
		margin-top: 24px;
	}

	.footer__nav {
		gap: 8px;
	}
}

@media (max-width: 768px) {
	.logo {
		width: 137px !important;
		height: 44px !important;
	}
}
.text-justify{
	text-align: justify;
}


.preloader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #1E6BD0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	color: white;
}

.preloader::after,
.preloader::before {
	content: "";
	position: absolute;
	background: white;
	opacity: 0.04;
	border-radius: 50%;
}

.preloader::after {
	right: -200px;
	top: -200px;
	height: 400px;
	width: 400px;
}

.preloader::before {
	left: -350px;
	bottom: -350px;
	height: 700px;
	width: 700px;
}

.preloader__content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.progress-container {
	width: 200px;
	max-width: 80%;
	margin-top: 2rem;
}

.progress-bar {
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.progress-fill {
	height: 100%;
	width: 100%;
	background: white;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left center;
	animation: progressAnimation 3s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

.progress-fill::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 20px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	animation: shimmer 1.5s infinite;
}

@keyframes progressAnimation {
	0% {
		transform: scaleX(0);
		animation-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
	}

	70% {
		transform: scaleX(0.95);
		animation-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
	}

	85% {
		transform: scaleX(0.98);
		animation-timing-function: cubic-bezier(0.7, 0, 0.1, 1);
	}

	95% {
		transform: scaleX(0.995);
		animation-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
	}

	100% {
		transform: scaleX(1);
		animation-timing-function: cubic-bezier(0.3, 0, 0.1, 1);
	}
}

/* Альтернативная версия с steps */
.progress-fill.alternative {
	animation: progressAnimationSteps 4s infinite;
}

@keyframes progressAnimationSteps {
	0% {
		transform: scaleX(0);
		animation-timing-function: ease-out;
	}

	50% {
		transform: scaleX(0.8);
		animation-timing-function: ease-out;
	}

	60% {
		transform: scaleX(0.85);
		animation-timing-function: ease-in-out;
	}

	70% {
		transform: scaleX(0.9);
		animation-timing-function: ease-in-out;
	}

	80% {
		transform: scaleX(0.94);
		animation-timing-function: ease-in-out;
	}

	90% {
		transform: scaleX(0.97);
		animation-timing-function: ease-in-out;
	}

	95% {
		transform: scaleX(0.985);
		animation-timing-function: ease-in-out;
	}

	100% {
		transform: scaleX(1);
		animation-timing-function: ease-in-out;
	}
}

@keyframes shimmer {
	0% {
		transform: translateX(-20px);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(20px);
		opacity: 0;
	}
}

/* Стили для body */
body.loading {
	overflow: hidden;
}

body.loaded {
	overflow: auto;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 98px;
	background: white;
	border-bottom: 1px solid #E2E8F0;
	padding: 12px;
	z-index: 9999;
}

.header__offset {
	height: 98px;
	width: 100%;
}

.header.active {
	border-bottom: 1px solid #1E6BD0;
	background: #1E6BD0;
	color: white;
}

.header.active .language-text,
.header.active .contact-item__label,
.header.active .contact-item__phone,
.header.active .contact-item__schedule,
.header.active .language-arrow,
.header.active .header__logo {
	color: white;
}

.header.active .language-switcher {
	background: rgba(255, 255, 255, 0.1);
	z-index: 10000;
}

.header.active .language-switcher.active {
	background: rgba(255, 255, 255, 0.1);
}

.header.active .language-dropdown {
	background: #12417E;
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.header.active .language-option__text {
	color: white;
}

.header.active .language-option:hover {
	background: rgba(255, 255, 255, 0.1);
}

.header__container {
	align-items: center;
	justify-content: space-between;
	display: flex;
	justify-content: space-between;
	max-width: 1393px;
	margin: 0 auto;
}

.header__logo {
	flex-shrink: 0;
	color: #475569;
}

.header__logo img {
	display: block;
	width: 224px;
	height: 64px;
}

.header__contacts {
	display: flex;
	gap: 40px;
	flex: 1;
	justify-content: center;
}

.header__right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.contact-item__label {
	font-size: 12px;
	color: #1E6BD0;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-item__phone {
	font-size: 16px;
	color: #0F172A;
	font-weight: 500;
	margin-bottom: 2px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-item__phone:hover {
	color: #1E6BD0;
}

.contact-item__schedule {
	font-size: 12px;
	color: #475569;
}

.language-switcher {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	position: relative;
	cursor: pointer;
	min-width: 140px;
}

.language-switcher:hover {
	background-color: #F1F5F9;
}

.language-switcher.active {
	background-color: #F1F5F9;
}

.language-switcher.active .language-arrow {
	transform: rotate(180deg);
}

.language-switcher .language-flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
}

.language-switcher .language-text {
	font-size: 14px;
	color: #0F172A;
}

.language-switcher .language-arrow {
	color: #0F172A;
	transition: transform 0.2s ease;
	text-align: left;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s ease;
	z-index: 1100;
	margin-top: 4px;
	overflow: hidden;
}

.language-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.language-option:hover {
	background-color: #DBE7F7;
}

.language-option__flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.language-option__text {
	font-size: 14px;
	color: #0F172A;
	white-space: nowrap;
}

.menu-button {
	display: none;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: #DBE7F7;
	border: none;
	border-radius: 24px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	color: #1E6BD0;
}

.menu-button.active {
	display: flex;
}

.menu-button:hover {
	background-color: rgb(198.1363636364, 217.0909090909, 242.3636363636);
}

.menu-button .menu-dots {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.menu-button .dot-row {
	display: flex;
	gap: 4px;
}

.menu-button .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #1E6BD0;
}

.menu-button .menu-text {
	font-size: 14px;
	color: #1E6BD0;
	font-weight: 500;
}

/* Стили для меню */
.menu-overlay {
	position: fixed;
	top: 98px;
	left: 0;
	width: 100%;
	height: calc(100% - 98px);
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1030;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	background: #1E6BD0;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.menu-container {
	width: 100%;
	max-width: 1440px;
	height: 100%;
	margin: auto;
	transform: translateY(100%);
	transition: transform 0.2s ease;
	overflow-y: auto;
}

.menu-overlay.active .menu-container {
	transform: translateY(0);
}

.menu-header {
	display: flex;
	justify-content: flex-end;
	padding: 24px;
}

.menu-close {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: background-color 0.15s ease;
}

.menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.menu-content {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 60px;
	padding: 36px 60px 60px;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.menu-bg {
	position: absolute;
	bottom: 0;
	left: 0;
}

.menu-column-wide {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.menu-column__card {
	padding: 0px 16px 24px 16px;
	background: #12417E;
	border-radius: 24px;
	position: relative;
}

.menu-column__card__bg {
	position: absolute;
	top: 0;
	right: 0;
}

.menu-category {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.48);
	font-weight: 400;
	margin-bottom: 16px;
	margin-top: 25px;
}

.menu-category-spacing {
	margin-top: 40px;
}

.menu-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.16);
	margin-bottom: 24px;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-link {
	display: block;
	font-size: 20px;
	color: white;
	text-decoration: none;
	padding: 12px 0;
	transition: opacity 0.15s ease;
}

.menu-link:hover {
	opacity: 0.8;
}

/* Контактные виджеты */
.contact-widgets {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	gap: 32px;
}

.contact-widget__label {
	font-size: 14px;
	color: white;
	margin-bottom: 12px;
	opacity: 0.8;
}

.contact-widget__phones {
	font-size: 20px;
	color: white;
	margin-bottom: 8px;
}

.contact-widget__phone {
	display: block;
	color: white;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.contact-widget__phone:hover {
	opacity: 0.8;
}

.contact-widget__schedule,
.contact-widget__email {
	font-size: 14px;
	color: white;
	opacity: 0.8;
}

.social-icons {
	display: flex;
	gap: 16px;
	margin-top: 12px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	transition: background-color 0.15s ease;
	color: white;
}

.social-icon:hover {
	background: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
	width: 32px;
	height: 32px;
}

/* Виджеты внизу */
.menu-widgets {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.widget {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: #164F9A;
	border-radius: 16px;
	color: white;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.widget-accessibility {
	grid-column: span 2;
	align-items: center;
}

.widget-question,
.widget-map {
	flex-direction: column;
}

.widget-question .widget-text,
.widget-map .widget-text {
	margin-top: auto;
}

.widget:hover {
	background: rgb(25.1875, 90.4460227273, 176.3125);
}

.widget-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: white;
	border-radius: 16px;
	color: #164F9A;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
}

.widget-text {
	font-size: 18px;
	line-height: 1.2;
}

@media (max-width: 1200px) {
	.header__contacts {
		gap: 20px;
	}

	.menu-content {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.menu-column-wide {
		grid-column: 1/-1;
	}

	.contact-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.header__contacts {
		display: none;
	}

	.menu-content {
		grid-template-columns: 1fr;
		padding: 24px 24px 40px;
	}

	.contact-widgets {
		grid-template-columns: 1fr;
	}

	.menu-widgets {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.language-switcher {
		min-width: auto;
	}

	.header {
		height: 60px;
		padding: 4px 12px;
	}

	.header__offset {
		height: 60px;
		width: 100%;
	}

	.header__logo {
		padding-top: 4px;
	}

	.menu-overlay {
		top: 60px;
		height: calc(100% - 60px);
	}

	.menu-text {
		display: none;
	}

	.language-text {
		display: none;
	}

	.header__container {
		padding: 0;
	}

	.menu-content {
		gap: 32px;
		max-height: calc(100vh - 60px);
	}

	.menu-category {
		font-size: 18px;
	}

	.menu-link {
		font-size: 16px;
		padding: 4px 0;
	}

	.language-text {
		display: none;
	}

	.language-dropdown {
		left: -50px;
		right: -50px;
		min-width: 140px;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #0F172A;
	line-height: 1.6;
	font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.news-button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: white;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 28px;
	padding: 16px 32px;
	font-size: 16px;
	color: #010101;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.news-button:hover {
	background: #f8fafc;
}

/* Базовые настройки типографики */
h1 {
	font-size: 48px;
	font-weight: bold;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin: 0 0 32px 0;
}

h2 {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0 0 24px 0;
}

h3 {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0 0 20px 0;
}

h4 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.005em;
	line-height: 1.4;
	margin: 0 0 16px 0;
}

h5 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.005em;
	line-height: 1.4;
	margin: 0 0 12px 0;
}

h6 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.5;
	margin: 0 0 12px 0;
}

p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 24px 0;
}

a {
	color: #1E6BD0;
}

strong {
	font-weight: 600;
}

.text-lead {
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 24px 0;
}

.text-small {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 12px 0;
}

.text-center {
	text-align: center;
}

.input-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.input-label {
	font-size: 14px;
	color: currentColor;
	opacity: 0.64;
	line-height: 1.5;
}

.input {
	font-size: 16px;
	color: currentColor;
	background: transparent;
	border: none;
	padding: 8px 0;
	line-height: 1.5;
	font-family: inherit;
}

.input::placeholder {
	color: currentColor;
	opacity: 0.4;
}

.input:focus {
	outline: none;
}

.input:focus~.input-underline {
	opacity: 1;
}

.input--textarea {
	resize: vertical;
	min-height: 80px;
	line-height: 1.75;
}

.input-underline {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	opacity: 0.16;
	transition: opacity 0.15s ease;
}

.input:focus~.input-underline {
	opacity: 1;
}

.submit-button {
	font-size: 16px;
	font-weight: 500;
	color: #1E6BD0;
	background: white;
	border: none;
	border-radius: 28px;
	padding: 16px 32px;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: flex-start;
}

.submit-button:hover:not(:disabled) {
	opacity: 0.9;
	transform: translateY(-1px);
}

.submit-button:active:not(:disabled) {
	transform: translateY(0);
}

.submit-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.submit-button {
	/* Текст внутри кнопки будет белым */
}

.submit-button>* {
	color: white;
}

form .submit-button>* {
	color: #1E6BD0;
}

.contact-container {
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

.contact-container__card {
	padding: 64px;
	background: #1E6BD0;
	border-radius: 24px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	position: relative;
	z-index: 1;
	position: relative;
	overflow: hidden;
	color: white;
}

.contact-container__card::before {
	content: "";
	position: absolute;
	width: 518px;
	height: 518px;
	left: 32px;
	top: 528px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.contact-container__card::after {
	content: "";
	position: absolute;
	width: 368px;
	height: 368px;
	left: 360px;
	top: 711px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
	transform: translateY(-50%);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0;
}

.contact-description {
	font-size: 18px;
	line-height: 1.75;
	margin: 0;
	opacity: 0.9;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.checkbox-input {
	width: 19px;
	height: 19px;
	border: 1.5px solid rgba(255, 255, 255, 0.16);
	border-radius: 2px;
	background: transparent;
	margin-top: 2px;
	cursor: pointer;
}

.checkbox-input:checked {
	background: white;
	border-color: white;
}

.checkbox-label {
	font-size: 14px;
	line-height: 1.5;
	cursor: pointer;
	flex: 1;
}

/* Адаптивность */
@media (max-width: 992px) {
	.contact-container__card {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 10000;
	background: #fff;
	border-top: 1px solid rgb(17 24 39 / .08);
}
.cookie-banner.show {
  display: flex !important;
}

.cookie-banner.hidden {
  display: none !important;
}
.cookie-banner p {
  flex: 1;
  padding-right: 10px;
	color: #111;
	margin: 0;
}
.cookie-banner p a{
	color: #111;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}
@media (max-width: 768px) {
	.contact-container__card {
		padding: 48px 16px;
	}
	.cookie-banner{
		flex-flow: column;
		gap: 12px;
	}
	.contact-title {
		font-size: 32px;
	}

	.contact-description {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.contact-title {
		font-size: 28px;
	}
}

.partners-container {
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	padding: 64px 12px;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.partners-scroll {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.partners-scroll::before,
.partners-scroll::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.partners-scroll::before {
	left: 0;
	background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-scroll::after {
	right: 0;
	background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-list {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 16px 0;
	min-width: min-content;
	height: 75px;
	/* Анимация бегущей строки */
	animation: scroll 30s linear infinite;
	white-space: nowrap;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.partner-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.partner-item:hover {
	opacity: 0.8;
}

.partner-logo {
	max-height: 75px;
	max-width: 170px;
	height: auto;
	width: auto;
	object-fit: contain;
	transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
	filter: grayscale(0%);
	opacity: 1;
}

/* Пауза анимации при наведении */
.partners-scroll:hover .partners-list {
	animation-play-state: paused;
}

/* Адаптивность */
@media (max-width: 768px) {
	.partners-list {
		gap: 24px;
	}

	.partner-logo {
		max-width: 150px;
	}

	@keyframes scroll {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}
}

@media (max-width: 576px) {
	.partners-list {
		gap: 20px;
	}

	.partner-logo {
		max-width: 120px;
	}

	.partners-scroll::before,
	.partners-scroll::after {
		width: 50px;
	}
}

.button {
	font-size: 16px;
	font-weight: 500;
	color: white;
	background: #1E6BD0;
	border: none;
	border-radius: 28px;
	padding: 16px 32px;
	cursor: pointer;
	transition: all 0.2s ease;
	align-self: flex-start;
}

.button:hover:not(:disabled) {
	opacity: 0.9;
}

.button:active:not(:disabled) {
	transform: translateY(0);
}

.button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.button>* {
	color: white;
}

.contacts-section {
	margin: 0 auto;
	padding: 40px 0;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

.contacts-header {
	text-align: center;
	margin-bottom: 60px;
}

.contacts-title {
	font-size: 48px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin: 0;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 464px 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

.contacts-card {
	display: flex;
	flex-direction: column;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}

.contacts-card--map {
	background-size: cover;
	color: white;
	min-height: 430px;
}

.contacts-card--yandex-map {
	overflow: hidden;
}

.contacts-card--info {
	background: #DBE7F7;
	color: #0F172A;
	min-height: 430px;
}

.contacts-card__content {
	padding: 32px;
	display: flex;
	flex-direction: column;
}

.contacts-card__content--map {
	margin-top: auto;
}

.contacts-card__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}

.contacts-card__description {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 32px;
	color: #0F172A;
}

.contacts-info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 32px;
}

.contact-info__phone,
.contact-info__email {
	display: block;
	font-size: 18px;
	color: #0F172A;
	text-decoration: none;
	margin-bottom: 4px;
	transition: color 0.2s ease;
}

.contact-info__phone:hover,
.contact-info__email:hover {
	color: #1E6BD0;
}

.contact-info__schedule {
	font-size: 12px;
	color: #64748B;
	margin-top: 8px;
}

.contact-info__label {
	font-size: 14px;
	color: #0F172A;
	font-weight: 700;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.contacts-address {
	margin-top: auto;
}

.contacts-address .contact-info__label {
	font-size: 12px;
	color: #0F172A;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.contacts-address .contact-info__address {
	font-size: 20px;
	color: #0F172A;
	line-height: 1.4;
}

.transport-section {
	background: white;
	border-radius: 24px;
	padding: 32px;
	border: 1px solid rgba(15, 23, 42, 0.12);
}

.transport-title {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	margin-bottom: 24px;
}

.transport-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.transport-tab {
	padding: 10px 12px;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.16);
	background: white;
	color: #475569;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.transport-tab--active {
	background: #DBE7F7;
	color: #1E6BD0;
	border-color: #DBE7F7;
}

.transport-tab:hover:not(.transport-tab--active) {
	background: #f8fafc;
}

.transport-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 32px;
}
.transport-content:last-of-type{
	margin: 0;
}
.transport-step {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	/* margin-top: 4px; */
	background: #1E6BD0;
	border-radius: 50%;
	color: white;
	border: 2px solid #E2E8F0;
	box-sizing: border-box;
}

.step-content {
	flex: 1;
}

.step-title {
	font-size: 14px;
	color: #0F172A;
	margin-bottom: 0;
	font-weight: 500;
}

.step-description {
	font-size: 12px;
	color: #475569;
}

.step-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin-left: 12px;
	margin-top: -36px;
	border-left: 2px dashed #E2E8F0;
}

@media (max-width: 1200px) {
	.contacts-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contacts-info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.contacts-section {
		padding: 24px 16px;
	}

	.contacts-title {
		font-size: 32px;
	}

	.contacts-info-grid {
		grid-template-columns: 1fr;
	}

	.transport-content {
		flex-direction: column;
		gap: 16px;
	}

	.step-divider {
		height: auto;
		margin: 8px 0;
		transform: rotate(90deg);
		width: 40px;
	}
}

@media (max-width: 768px) {
	.contacts-card__content {
		padding: 24px;
	}

	.contacts-title {
		font-size: 24px;
	}

	.contacts-card__title {
		font-size: 20px;
	}

	.contacts-card__description {
		font-size: 16px;
	}

	.contact-info-group__phone,
	.contact-info-group__email,
	.contact-info__address {
		font-size: 16px;
	}

	.transport-tabs {
		gap: 8px;
	}

	.transport-tab {
		padding: 8px 16px;
		font-size: 11px;
	}
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	flex-flow: wrap;
}

.breadcrumbs__icon {
	position: relative;
	transform: rotate(90deg);
}

.breadcrumbs__link {
	font-size: 14px;
	color: #1E6BD0;
	text-decoration: none;
}

.breadcrumbs__link:hover {
	text-decoration: none;
}

.breadcrumbs__current {
	font-size: 14px;
	color: #475569;
}

.breadcrumbs svg {
	transform: rotate(-90deg);
}

.news-single__title {
	font-size: 48px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin-bottom: 24px;
}

.news-single__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475569;
	margin-bottom: 40px;
}

.news-single__date svg {
	color: #475569;
}

.news-single__image {
	width: 100%;
	height: 484px;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 40px;
}

.news-single__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-single__content {
	font-size: 18px;
	line-height: 1.6;
	color: #0F172A;
}

.news-single__content ul,
.news-single__content ol {
	margin-bottom: 20px;
	padding-bottom: 16px;
	padding-left: 28px;
}

.news-single__content table {
	margin-bottom: 20px;
	padding-bottom: 16px;
}

@media (max-width: 992px) {
	.news-single__title {
		font-size: 36px;
	}

	.news-single__image {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.news-single__title {
		font-size: 28px;
	}

	.news-single__image {
		height: 300px;
	}

	.news-single__content {
		font-size: 16px;
	}

	.news-single__content h3 {
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.news-single__title {
		font-size: 24px;
	}

	.news-single__image {
		height: 200px;
		border-radius: 16px;
	}
}

.news-sidebar {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 94px;
	max-width: 320px;
	width: 100%;
	height: 100%;
	border-right: 1px solid #E2E8F0;
	padding: 40px 0;
	gap: 24px;
	margin-right: 16px;
}

.news-sidebar.sidebar-toggle {
	overflow: auto;
	max-height: 600px;
	transform: scaleX(-1); /* скролл слева */
}
.news-sidebar.sidebar-toggle > * {
	transform: scaleX(-1);
}

/* Стили полосы прокрутки */
.news-sidebar.sidebar-toggle::-webkit-scrollbar {
	width: 4px;
}

.news-sidebar.sidebar-toggle::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}

.news-sidebar.sidebar-toggle::-webkit-scrollbar-thumb {
	background-color: #007bff;
	border-radius: 4px;
}

.news-sidebar.sidebar-toggle::-webkit-scrollbar-thumb:hover {
	background-color: #12417E;
}
.news-sidebar .side_wrapper{
	gap: 24px;
	display: flex;
	flex-direction: column;
}
.news-sidebar__children {
	padding-left: 30px;
	gap: 16px 0;
	display: flex;
	flex-flow: column;
	}
.news-sidebar__link {
	display: flex;
	text-decoration: none;
	padding: 0 24px;
	color: #475569;
	transition: color 0.2s ease;
}

.news-sidebar__link:hover {
	color: #1E6BD0;
}

.news-sidebar__link--active {
	border-right: 1px solid #1E6BD0;
	color: #1E6BD0;
}

@media (max-width: 992px) {
	.news-sidebar {
		position: static;
		height: auto;
		max-width: none;
		margin-right: 0;
		overflow-x: auto;
		padding: 20px 0;
		border-right: none;
		border-top: 1px solid #E2E8F0;
		gap: 8px;
	}

	.news-sidebar__link {
		padding: 8px 16px;
	}

	.news-sidebar__link--active {
		border-right: none;
		border-bottom: 1px solid #1E6BD0;
	}
}

.news-single-page {
	display: flex;
	flex-direction: row;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	margin-bottom: 48px;
}

.news-single-page.news-single-page_wrap {
	display: block;
}

.news-single-page__content {
	max-width: 860px;
	margin: 0 auto;
	padding: 40px 0;
	flex: 1;
}

.news-single-page__content--full {
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

/* Адаптивность */
@media (max-width: 1440px) {
	.news-single-page {
		padding: 40px 16px;
	}

	.news-card--featured {
		height: 400px !important;
	}
}

@media (max-width: 992px) {
	.news-single-page {
		flex-direction: column-reverse;
	}
}

@media (max-width: 576px) {
	.news-single-page {
		padding: 32px 16px;
	}
}

.employees-section {
	margin-top: 80px;
}

.employees-section__title {
	font-size: 32px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin-bottom: 44px;
}

/* Базовая сетка */
.employees-grid {
	display: grid;
	gap: 25px;
	grid-template-columns: repeat(3, 1fr);
	/* по умолчанию 3 колонки */
}

/* Если внутри только 1 .employee-card → одна колонка */
.employees-grid:has(> .employee-card:only-child) {
	/* grid-template-columns: auto; */
}

/* Если внутри ровно 2 .employee-card → две колонки */


.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: #007bff;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

.loader_wrap {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #ffffff52;
	opacity: 0;
	visibility: hidden;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.employee-card {
	cursor: pointer;
	transition: transform 0.2s ease;
	text-decoration: none;
	color: #0F172A;
}

.employee-card:hover {
	transform: translateY(-4px);
}

.employee-card__photo {
	width: 100%;
	height: 320px;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 16px;
	background: #DBE7F7;
}

.employee-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.employee-card__photo-placeholder {
	width: 100%;
	height: 100%;
	background: #C4C4C4;
	border-radius: 24px;
}

.employee-card__info {
	text-align: left;
}

.employee-card__name {
	font-size: 14px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 4px;
	line-height: 1.4;
}

.employee-card__position {
	font-size: 20px;
	color: #475569;
	line-height: 1.5;
	margin: 0;
}

.employees-empty {
	background: white;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	color: #475569;
	font-size: 14px;
}
@media (min-width: 992px) {
	.employees-grid:has(> .employee-card:nth-child(2)):not(:has(> .employee-card:nth-child(3))) {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 992px) {

	/* .employees-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  } */
	.news-single-page__content {
		min-width: 100%;
	}
}

@media (max-width: 768px) {
	.employees-section {
		margin-top: 60px;
	}

	.employees-section__title {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.employees-grid {
		grid-template-columns: 2fr 2fr;
		min-width: 100%;
		margin: 0 auto;
	}

	.employee-card__photo {
		height: 360px;
	}

	.employees-empty {
		padding: 32px 24px;
	}
}

@media (max-width: 576px) {
	.employees-grid {
		max-width: 100%;
		grid-template-columns: 1fr;
	}

	/* .employee-card__photo {
		height: 300;
	} */

	.employee-card__photo img {
		object-position: top;
	}
}

.employee-profile {
	margin-top: 48px;
}

.employee-profile__card {
	display: flex;
	background: #DBE7F7;
	border-radius: 24px;
	gap: 48px;
	position: relative;
	overflow: hidden;
}

.employee-profile__card::before {
	content: "";
	position: absolute;
	width: 518px;
	height: 518px;
	right: 84px;
	top: -235px;
	background: #1E6BD0;
	opacity: 0.06;
	border-radius: 50%;
}

.employee-profile__card::after {
	content: "";
	position: absolute;
	width: 442px;
	height: 442px;
	left: -147px;
	bottom: -139px;
	background: #1E6BD0;
	opacity: 0.06;
	border-radius: 50%;
}

.employee-profile__content {
	display: flex;
	position: relative;
	z-index: 1;
	padding: 48px 48px 48px 0;
}

.employee-profile__photo {
	flex-shrink: 0;
	width: 302px;
	min-height: 339px;
	border-radius: 0;
	overflow: hidden;
}

.employee-profile__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.cursor_link{
	cursor: pointer;
	position: relative;
	display: block;
}
.employee-profile__photo-placeholder {
	width: 100%;
	height: 100%;
	background: #C4C4C4;
}

.employee-profile__info {
	flex: 1;
}

.employee-profile__badge {
	display: inline-block;
	background: white;
	border-radius: 18px;
	padding: 8px 16px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #1E6BD0;
	font-family: "Gilroy", sans-serif;
}

.employee-profile__name {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	line-height: 1.3;
}

.employee-profile__meta {
	margin-bottom: 32px;
}

.employee-profile__position {
	font-size: 14px;
	color: #0F172A;
	opacity: 0.64;
	margin: 0 0 4px 0;
	line-height: 1.4;
}

.employee-profile__department {
	font-size: 14px;
	color: #0F172A;
	opacity: 0.64;
	margin: 0;
	line-height: 1.4;
}

.employee-profile__section {
	margin-bottom: 24px;
}

.employee-profile__section:last-child {
	margin-bottom: 0;
}

.employee-profile__section-title {
	display: inline;
	font-size: 14px;
	font-weight: 600;
	color: #0F172A;
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.employee-profile__section-text {
	font-size: 14px;
	color: #0F172A;
	margin: 0 0 8px 0;
	line-height: 1.5;
}

.employee-profile__section-text:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.employee-profile__content {
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.employee-profile {
		margin-top: 60px;
	}

	.employee-profile__card {
		padding: 32px 24px;
		flex-direction: column;
		gap: 0;
	}

	.employee-profile__card::before,
	.employee-profile__card::after {
		display: none;
	}

	.employee-profile__content {
		flex-direction: column;
		gap: 24px;
		padding-right: 0;
	}

	.employee-profile__photo {
		width: 100%;
		max-width: 100%;
		height: 375px;
		border-radius: 24px;
	}

	.employee-profile__name {
		font-size: 20px;
		text-align: center;
	}

	.employee-profile__meta {
		text-align: center;
	}

	.employee-profile__badge {
		display: block;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		max-width: fit-content;
	}
}

@media (max-width: 576px) {
	.employee-profile__card {
		padding: 24px 16px;
	}

	.employee-profile__photo {
		height: 250px;
	}
}

.profile-tabs {
	margin: 36px 0;
}

.profile-tabs__container {
	display: flex;
	gap: 32px;
}

.profile-tabs__tab {
	position: relative;
	padding: 12px 0;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.profile-tabs__tab--active .profile-tabs__label {
	color: #0F172A;
	font-weight: 600;
}

.profile-tabs__label {
	font-size: 14px;
	font-family: "Gilroy", sans-serif;
	color: #475569;
	transition: color 0.2s ease;
}

.profile-tabs__tab--active .profile-tabs__label {
	color: #0F172A;
}

.profile-tabs__tab:not(.profile-tabs__tab--active):hover .profile-tabs__label {
	color: #0F172A;
	opacity: 0.8;
}

.profile-tabs__indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #1E6BD0;
	border-radius: 1px;
}

.profile-tabs__divider {
	width: 100%;
	height: 1px;
	background: #D9DADD;
	margin-top: -1px;
}

@media (max-width: 768px) {
	.profile-tabs {
		margin-top: 32px;
	}

	.profile-tabs__container {
		gap: 24px;
	}

	.profile-tabs__indicator {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.profile-tabs__container {
		gap: 16px;
	}

	.profile-tabs__tab {
		padding: 8px 0;
	}

	.profile-tabs__indicator {
		width: 100%;
	}
}

.search-section {
	background: #DBE7F7;
	border-radius: 24px;
	padding: 48px;
	position: relative;
	overflow: hidden;
}

.search-section::before {
	content: "";
	position: absolute;
	width: 518px;
	height: 518px;
	right: 84px;
	top: -235px;
	background: #1E6BD0;
	opacity: 0.06;
	border-radius: 50%;
}

.search-section::after {
	content: "";
	position: absolute;
	width: 442px;
	height: 442px;
	left: -147px;
	bottom: -139px;
	background: #1E6BD0;
	opacity: 0.06;
	border-radius: 50%;
}

.search-section__title {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin-bottom: 34px;
	position: relative;
	z-index: 1;
}

.search-container {
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 600px;
	width: 100%;
}
.search_output.active {
	opacity: 1;
	visibility: visible;
}
.search_overlay{
	position: fixed;
	width: 100%;
	top: 0;
	height: 100%;
	left: 0;
	background: #0000008e;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: 0.2s ease all;
}
.search_overlay.active{
	opacity: 1;
	visibility: visible;
}
.search_output{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: 1;
	width: 100%;
	background: #dae7f7;
	top: 48px;
	border-radius: 0 0 12px 12px;
	padding: 20px;
}
.search_output_inner a{
	display: block;
	width: 100%;
	padding: 10px 0;
	text-decoration: none;
	color: #000;
	transition: 0.2s ease all;
}
.search-item__content{
	display: flex;
	align-items: center;
}
.search_output_inner a + *{
	border-top: 1px solid #000;
}
.search_output_inner a:hover{
	opacity: 0.6;
}
.search-icon {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	color: #0F172A;
	opacity: 0.48;
	z-index: 2;
}

.search-input {
	width: 100%;
	height: 56px;
	padding: 0 20px 0 64px;
	background: #DBE7F7;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-family: "Gilroy", sans-serif;
	color: #0F172A;
	z-index: 1;
}

.search-input::placeholder {
	color: #8C9099;
}

.search-input:focus {
	outline: none;
}

.search-examples {
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: #475569;
}

.search-examples__label {
	color: #475569;
}

.search-examples__item {
	color: #1E6BD0;
	cursor: pointer;
}

.search-examples__item:hover {
	text-decoration: underline;
}

.search-examples__separator {
	color: #475569;
	margin: 0 4px;
}

@media (max-width: 768px) {
	.search-section {
		padding: 32px 24px;
	}

	.search-section::before,
	.search-section::after {
		display: none;
	}

	.search-section__title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.search-icon {
		left: 20px;
	}

	.search-input {
		padding-left: 56px;
	}

	.search-examples {
		font-size: 12px;
	}
}

.list-section {
	margin-top: 80px;
}

.list-section__title {
	font-size: 32px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin-bottom: 24px;
}

.list-list {
	background: white;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 16px;
	overflow: hidden;
}

.list-item {
	text-decoration: none;
	color: #0F172A;
}

.list-item__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	min-height: 56px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-decoration: none;
	color: #0F172A;
}

.list-item__content:hover {
	background: rgba(219, 231, 247, 0.3);
}

.list-item__name {
	font-size: 14px;
	font-family: "Gilroy", sans-serif;
	color: #0F172A;
	text-decoration: none;
	color: #0F172A;
	flex: 1;
}

.list-item__arrow {
	color: #0F172A;
	opacity: 0.48;
	flex-shrink: 0;
	margin-left: 16px;
}

.list-item__divider {
	height: 1px;
	background: #D9DADD;
}

.list-empty {
	background: white;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	color: #475569;
	font-size: 14px;
}

@media (max-width: 768px) {
	.list-section {
		margin-top: 60px;
	}

	.list-section__title {
		font-size: 24px;
		margin-bottom: 32px;
	}

	.list-item__content {
		padding: 12px 16px;
	}

	.list-item__divider {
		margin: 0 12px;
	}

	.list-empty {
		padding: 32px 24px;
	}
}

.documents-section,.addresses-section {
	padding-top: 80px;
}
[id] {
	scroll-margin-top: 100px; /* высота фиксированной шапки */
}
.documents-section__title {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	letter-spacing: -0.01em;
	margin-bottom: 40px;
}

.documents-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 12px;
	margin-bottom: 30px;
}

.document-card {
	display: flex;
	align-items: center;
	padding: 8px;
	border: 1px solid rgba(4, 5, 7, 0.12);
	border-radius: 16px;
	gap: 12px;
}

.document-card__icon {
	position: relative;
	display: flex;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #1E6BD0;
}

.document-card__icon::after {
	content: "";
	position: absolute;
	background: currentColor;
	width: 48px;
	height: 48px;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	opacity: 0.1;
}

.document-card__info {
	flex: 1;
}

.document-card__title {
	font-size: 14px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 4px;
	/* Ограничение текста до 1 строк */
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.document-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #475569;
}

.document-card__separator {
	font-size: 8px;
}

.document-card__download {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #475569;
}

.document-card__download:hover {
	color: #1E6BD0;
}

@media (max-width: 768px) {
	.documents-grid {
		grid-template-columns: 1fr;
	}

	.documents-section {
		padding-top: 60px;
	}

	.documents-section__title {
		font-size: 24px;
	}
}

.input-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.input-label {
	font-size: 14px;
	color: currentColor;
	opacity: 0.64;
	line-height: 1.5;
}

.input {
	font-size: 16px;
	color: currentColor;
	background: transparent;
	border: none;
	padding: 8px 0;
	line-height: 1.5;
}

.input--select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6L8 10L12 6' fill='none' stroke='%230F172A' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 20px;
	cursor: pointer;
}

.input:focus {
	outline: none;
}

.input:focus~.input-underline {
	opacity: 1;
}

.input-underline {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	opacity: 0.16;
	transition: opacity 0.15s ease;
}

.input:focus~.input-underline {
	opacity: 1;
}

/* Стилизация опций выпадающего списка */
select.input--select option {
	background: #fff;
	color: #333;
	padding: 12px 16px;
	font-size: 14px;
	border-bottom: 1px solid #f0f0f0;
}

select.input--select option:hover {
	background: #f8f9fa;
}

select.input--select option:checked {
	background: #007bff;
	color: white;
}

select.input--select option:disabled {
	background: #f8f9fa;
	color: #6c757d;
	font-style: italic;
}

/* Для браузеров, которые поддерживают стилизацию выпадающего списка */
select.input--select:focus option:checked {
	background: #007bff linear-gradient(0deg, #007bff 0%, #007bff 100%);
	color: white;
}

/* Стилизация группы опций */
select.input--select optgroup {
	background: #f8f9fa;
	color: #6c757d;
	font-weight: 600;
	font-size: 12px;
	padding: 8px 16px;
}

select.input--select optgroup option {
	background: white;
	color: #333;
	padding-left: 24px;
}

/* Альтернативный подход с кастомным селектом */
.custom-select-wrapper {
	position: relative;
}

.custom-select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	display: none;
}

.custom-select-option {
	padding: 12px 16px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
}

.custom-select-option:hover {
	background: #f8f9fa;
}

.custom-select-option.selected {
	background: #007bff;
	color: white;
}

.custom-select-option:last-child {
	border-bottom: none;
}

.map-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding-top: 24px;
}

.news-page {
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	padding: 40px 0;
}

.news-page__title {
	font-size: 40px;
	font-weight: bold;
	color: #0F172A;
	text-align: center;
	margin-bottom: 48px;
	letter-spacing: -0.01em;
}

.news-page__categorys {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-bottom: 48px;
	flex-wrap: wrap;
}

.news-page__category {
	cursor: pointer;
	border-radius: 16px;
	padding: 8px 12px;
	font-size: 12px;
	display: inline-block;
	width: fit-content;
	border: 1px solid #E2E8F0;
	text-decoration: none;
	color: #0F172A;
}

.news-page__category--active {
	background: #DBE7F7;
	border: 1px solid #DBE7F7;
	color: #1E6BD0;
}

.news-page__footer {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.news-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
	padding-left: 16px;
	padding-right: 16px;
}

.news-container.news-widget {
	grid-template-columns: 740px 1fr;
}

.news-page-card {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: white;
	text-decoration: none;
}

.news-page-card__category {
	background: #E2E8F0;
	border-radius: 16px;
	padding: 8px 12px;
	font-size: 12px;
	color: #475569;
	display: inline-block;
	width: fit-content;
}

.news-page-card--regular {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	overflow: hidden;
}

.news-page-card--regular .news-page-card__image {
	overflow: hidden;
	min-height: 266px;
	max-height: 266px;
}

.news-page-card--regular .news-page-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-page-card--regular .news-page-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px 16px;
}

.news-page-card--regular .news-page-card__title {
	font-size: 18px;
	color: #0F172A;
	margin: 8px 0;
	line-height: 1.75;
	/* Ограничение текста до 7 строк */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-page-card--regular .news-page-card__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475569;
}

.news-page-card--regular .news-page-card__date svg {
	flex-shrink: 0;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

/* Адаптивность */
@media (max-width: 1440px) {
	.news-page {
		padding: 40px 0;
	}

	.news-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.news-container.news-widget {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.news-page-card--featured {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.news-page-card--regular .news-page-card__image {
		display: none;
	}

	.news-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.news-page__title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.news-page-card--featured {
		height: 300px;
	}

	.news-page-card--featured .news-page-card__content {
		padding: 24px;
	}

	.news-page-card--featured .news-page-card__title {
		font-size: 24px;
	}

	.news-page-card--regular {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 140px;
		gap: 12px;
	}

	.news-page-card--regular .news-page-card__title {
		font-size: 16px;
	}
}

@media (max-width: 1440px) {
	.news-page {
		padding: 40px 0;
	}

	.news-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.news-page-card--featured {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.news-page-card--regular .news-page-card__image {
		display: none;
	}

	.news-page__title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.news-page-card--featured {
		height: 300px;
	}

	.news-page-card--featured .news-page-card__content {
		padding: 24px;
	}

	.news-page-card--featured .news-page-card__title {
		font-size: 24px;
	}

	.news-page-card--regular {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 140px;
		gap: 12px;
	}

	.news-page-card--regular .news-page-card__title {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.news-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.news-page {
		padding: 32px 16px;
	}

	.news-page-card--featured {
		height: 250px;
	}

	.news-page-card--featured .news-page-card__content {
		padding: 20px;
	}

	.news-page-card--featured .news-page-card__title {
		font-size: 20px;
	}

	.news-page-card--regular {
		grid-template-columns: 1fr;
		height: auto;
	}

	.news-page-card--regular .news-page-card__image {
		height: 120px;
	}
}
.fancybox__container{
	z-index: 99999 !important;
}
.sidebar_button{
	background: #007bff;
	color: #fff;
	width: 100%;
	text-align: center;
	padding: 14px 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 99;
	cursor: pointer;
	display: none;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}
#reviewForm .doctor-card__stars .star{
	cursor: pointer;
}
.modal-content {
	background: white;
	border-radius: 24px;
	padding: 40px;
	max-width: 600px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease;
	color: #666;
	z-index: 1;
}

.modal-close:hover {
	background: #f1f5f9;
	color: #000;
}

.modal-header {
	margin-bottom: 20px;
	padding-right: 40px;
}

.modal-title {
	font-size: 24px;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
}

.modal-body {
	color: #334155;
	line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
	.modal-content {
		padding: 24px;
		margin: 20px;
	}

	.modal-title {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.modal-content {
		padding: 20px;
		margin: 10px;
	}

	.modal-header {
		padding-right: 30px;
	}
}

.doctor-card {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	padding: 0;
	background: transparent;
	max-width: 854px;
}

.doctor-card__avatar {
	flex-shrink: 0;
	width: 270px;
	height: 320px;
	border-radius: 24px;
	overflow: hidden;
	background: #DBE7F7;
	position: relative;
}

.doctor-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.doctor-card__placeholder {
	width: 100%;
	height: 100%;
	background: #C4C4C4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Gilroy", sans-serif;
	font-size: 72px;
	font-weight: bold;
	color: #0F172A;
}

.doctor-card__info {
	width: 100%;
	flex: 1;
	padding-top: 8px;
}

.doctor-card__name {
	font-family: "Gilroy", sans-serif;
	font-size: 48px;
	font-weight: bold;
	letter-spacing: -0.01em;
	color: #0F172A;
	margin: 0 0 16px 0;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.doctor-card__first-name,
.doctor-card__last-name {
	display: block;
}

.doctor-card__position,
.doctor-card__department {
	font-family: "Gilroy", sans-serif;
	font-size: 14px;
	color: #0F172A;
	opacity: 0.64;
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.doctor-card__rating {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 16px;
}

.doctor-card__stars {
	display: flex;
	gap: 4px;
}

.doctor-card__star {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.doctor-card__rating-info {
	display: flex;
	align-items: center;
	gap: 8px;
}

.doctor-card__rating-value {
	font-family: "Gilroy", sans-serif;
	font-size: 14px;
	color: #171717;
	font-weight: 500;
}

.doctor-card__reviews-count {
	font-family: "Gilroy", sans-serif;
	font-size: 14px;
	color: #525252;
}
.employee-gallery{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.employee-gallery a{
	display: block;
}
.employee-gallery a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	border-radius: 16px;
}
.search_toggle{
	display: none;
}
/* Адаптивность */
@media (max-width: 1024px) {
	.doctor-card__name {
		font-size: 40px;
	}
	.header__container{
		position: relative;
	}
	.search-input-wrapper{
		position: absolute;
		max-width: 100%;
		top: 66px;
		opacity: 0;
		visibility: hidden;
		transition: 0.2s ease all;
	}
	.doctor-card__avatar {
		width: 240px;
		height: 320px;
	}
	.search_overlay{
		opacity: 0;
		visibility: hidden;
		transition: 0.2s ease all;
	}
	.search_toggle{
		display: flex;
		align-items: center;
		justify-content: center;
		background: #DBE7F7;
		border-radius: 18px;
		padding: 8px 20px;
	}
	.search_toggle svg{
		margin-left: 12px;
	}
	.search-input-wrapper.active{
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 768px) {
	.doctor-card {
		flex-direction: column;
		gap: 24px;
		max-width: 400px;
		margin: 0 auto;
	}
	.employee-gallery{
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.doctor-card__avatar {
		idth: 100%;
		height: 360px;
		align-self: center;
	}

	.doctor-card__name {
		font-size: 32px;
		text-align: center;
	}

	.doctor-card__position,
	.doctor-card__department {
		text-align: center;
	}

	.doctor-card__rating {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.doctor-card__avatar {
		width: 100%;
		height: 360px;
	}

	.doctor-card__name {
		font-size: 28px;
	}

	.doctor-card__rating {
		flex-direction: column;
		gap: 12px;
	}
}

.profile-reviews {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 40px;
}

.profile-reviews__title {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.review-item {
	padding-bottom: 32px;
}

.review-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.review-item__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.review-item__author {
	font-size: 18px;
	font-weight: 600;
	color: #0F172A;
	margin: 0;
	line-height: 1.4;
}

.review-item__rating {
	display: flex;
	gap: 2px;
	flex-shrink: 0;
	margin-bottom: 12px;
}

.review-item__star {
	width: 20px;
	height: 20px;
	color: #E5E7EB;
}

.review-item__star--active {
	color: #FACC15;
}

.review-item__star path {
	fill: #E5E7EB;
}

.review-item__star--active path {
	fill: #FACC15;
}

.review-item__content {
	color: #0F172A;
}

.review-item__doctor {
	font-weight: 600;
	display: inline;
}

.review-item__text {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
	display: inline;
}

.review-item__text:not(:has(+ .review-item__doctor)) {
	display: block;
}

.profile-reviews__empty {
	text-align: center;
	padding: 60px 20px;
	color: #475569;
	font-size: 16px;
}

@media (max-width: 768px) {
	.profile-reviews {
		gap: 24px;
		margin-top: 32px;
	}

	.review-item {
		padding-bottom: 24px;
	}

	.review-item__header {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.review-item__author {
		font-size: 16px;
	}

	.review-item__text {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.profile-reviews {
		gap: 20px;
	}

	.review-item {
		padding-bottom: 20px;
	}

	.review-item__text {
		font-size: 14px;
	}

	.profile-reviews__empty {
		padding: 40px 20px;
	}
}

.vacancies-page {
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	padding: 40px 16px;
}

.vacancies-page__title {
	font-size: 48px;
	font-weight: bold;
	color: #0F172A;
	text-align: center;
	margin-bottom: 24px;
	letter-spacing: -0.01em;
	font-family: "Gilroy", sans-serif;
}

.vacancies-page__subtitle {
	font-size: 18px;
	color: #0F172A;
	text-align: center;
	margin-bottom: 48px;
	font-family: "Gilroy", sans-serif;
}

.vacancies-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.vacancy-card {
	background: white;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.vacancy-card__header {
	padding: 32px 32px 0;
}

.vacancy-card__title {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	margin: 0;
	letter-spacing: -0.01em;
	font-family: "Gilroy", sans-serif;
	line-height: 1.2;
}

.vacancy-card__content {
	padding: 16px 32px 32px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vacancy-card__description {
	font-size: 16px;
	color: #0F172A;
	margin: 0 0 16px 0;
	line-height: 1.5;
	font-family: "Gilroy", sans-serif;
}

.vacancy-card__description>span:first-child {
	font-weight: bold;
}

.vacancy-card__contact {
	margin-bottom: 16px;
}

.vacancy-card__contact-title {
	font-size: 16px;
	color: #0F172A;
	margin: 0 0 8px 0;
	font-family: "Gilroy", sans-serif;
	font-weight: normal;
}

.vacancy-card__contact-list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.vacancy-card__contact-list span {
	font-size: 16px;
	color: #0F172A;
	font-family: "Gilroy", sans-serif;
}

.vacancy-card__details {
	padding-top: 16px;
}
.vacancy-card__details a{
	color: #0F172A;
	text-decoration: none;
}
.vacancy-card__phone {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	margin-bottom: 8px;
	letter-spacing: -0.01em;
	font-family: "Gilroy", sans-serif;
}

.vacancy-card__person {
	font-size: 16px;
	color: #475569;
	margin-bottom: 4px;
	font-family: "Gilroy", sans-serif;
}

.vacancy-card__email {
	font-size: 24px;
	font-weight: bold;
	color: #0F172A;
	font-family: "Gilroy", sans-serif;
	letter-spacing: -0.01em;
}

/* Адаптивность */
@media (max-width: 1440px) {
	.vacancies-page {
		padding: 40px 16px;
	}

	.vacancies-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.vacancies-page {
		padding: 32px 16px;
	}

	.vacancies-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.vacancies-page__title {
		font-size: 32px;
	}

	.vacancies-page__subtitle {
		font-size: 16px;
	}

	.vacancy-card {
		height: auto;
		min-height: 336px;
	}

	.vacancy-card__header {
		padding: 24px 24px 0;
	}

	.vacancy-card__content {
		padding: 16px 24px 24px;
	}

	.vacancy-card__title {
		font-size: 20px;
	}

	.vacancy-card__phone,
	.vacancy-card__email {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.vacancies-page {
		padding: 24px 16px;
	}

	.vacancy-card__header {
		padding: 20px 20px 0;
	}

	.vacancy-card__content {
		padding: 12px 20px 20px;
	}
}

.employee-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.employee-carousel__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.employee-carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
	height: 100%;
}

.employee-carousel__slide {
  flex: 0 0 100%;
  margin-right: 10px;
  box-sizing: border-box;
}

.employee-carousel__slide:last-child {
  margin-right: 0;
}






.employee-carousel__slide .grid-card {
	height: 100%;
	min-height: 348px;
}

.employee-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
	padding: 0;
}

.employee-carousel__nav--prev {
	left: 16px;
}

.employee-carousel__nav--next {
	right: 16px;
}

.employee-carousel__nav:hover {
	opacity: 0.8;
}

.employee-carousel__nav:active {
	transform: translateY(-50%) scale(0.95);
}

.employee-carousel__indicators {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.employee-carousel__indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.employee-carousel__indicator.active {
	background: white;
	transform: scale(1.2);
}

.employee-carousel__indicator:hover {
	background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.employee-carousel__nav {
		transform: translateY(-50%) scale(0.8);
	}

	.employee-carousel__nav:active {
		transform: translateY(-50%) scale(0.75);
	}

	.employee-carousel__indicators {
		bottom: 16px;
	}
}

.main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	margin: 0 auto;
	aspect-ratio: 1424/908;
	padding-top: 16px;
}
.main-grid.main-grid-double{
	grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  align-items: start;

  aspect-ratio: auto; /* 🔥 КЛЮЧЕВОЕ */
}
.grid-card--employee-carousel {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	min-height: 348px;
}

/* Остальные стили остаются без изменений */
.grid-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.grid-card--large {
	grid-column: span 2;
	min-height: 540px;
}

.grid-card--small {
	min-height: 348px;
}

.grid-card--hospital {
	color: white;
}

.grid-card--employee {
	color: white;
}

.grid-card--patients {
	background-color: #1E6BD0;
	color: white;
	position: relative;
	overflow: hidden;
}

.grid-card--paid {
	background-color: #1E6BD0;
	color: white;
	position: relative;
}

.grid-card--map {
	color: white;
	position: relative;
}

.grid-card--map::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #1E6BD0;
	mix-blend-mode: color;
	opacity: 0.3;
}

.grid-card__content {
	position: relative;
	z-index: 2;
	padding: 32px;
	padding-bottom: 48px;
	width: 100%;
}

.grid-card__title {
	font-size: 56px;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 16px;
}

.grid-card__name {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
}

.grid-card__description {
	font-size: 20px;
	opacity: 0.9;
	line-height: 1.4;
}

.grid-card__position {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.4;
}

.grid-card .employee-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 14px;
	margin-bottom: 16px;
}

.grid-card__icon {
	position: absolute;
	top: 0px;
	right: 0px;
}

.news-section {
	padding: 40px 24px;
}

@media (max-width: 1200px) {
	.main-grid {
		padding-left: 16px;
		padding-right: 16px;
		grid-template-columns: 1fr;
		aspect-ratio: auto;
	}

	.grid-card--large {
		min-height: 400px;
		grid-column: span 1;
	}

	.grid-card--small {
		min-height: 300px;
	}
}

@media (max-width: 768px) {
	.main-grid.main-grid-double{
		grid-template-columns: repeat(1, 1fr);
	}
	.main-grid {
		gap: 12px;
	}

	.grid-card__content {
		padding: 24px;
	}

	.grid-card__title {
		font-size: 32px;
	}

	.grid-card__description {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.grid-card__title {
		font-size: 24px;
	}

	.grid-card__name {
		font-size: 20px;
	}

	.grid-card__description,
	.grid-card__position {
		font-size: 14px;
	}

	.employee-badge {
		font-size: 12px;
		padding: 6px 10px;
	}
}

.news-section {
	padding: 40px 0;
	margin: 0 auto;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
}

.news-section__title {
	font-size: 40px;
	font-weight: bold;
	color: #0F172A;
	text-align: center;
	margin-bottom: 48px;
	letter-spacing: -0.01em;
}

.news-section__footer {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}



.news-card {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: white;
	text-decoration: none;
	display: block;
}

.news-card--featured {
	max-height: 576px;
	height: 100%;
}

.news-card--featured .news-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-card--featured .news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.news-card--featured .news-card__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
}

.news-card--featured .news-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	color: white;
	z-index: 2;
}

.news-card--featured .news-card__category {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(16px);
	border-radius: 18px;
	padding: 8px 16px;
	font-size: 12px;
	display: inline-block;
	margin-bottom: 24px;
}

.news-card--featured .news-card__title {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
}

.news-card--featured .news-card__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475569;
}

.news-card--featured .news-card__date svg {
	flex-shrink: 0;
}

.news-card--regular {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	padding: 16px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	height: 183px;
}

.news-card--regular .news-card__image {
	border-radius: 8px;
	overflow: hidden;
}

.news-card--regular .news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card--regular .news-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 6px 0;
}

.news-card--regular .news-card__category {
	background: #E2E8F0;
	border-radius: 16px;
	padding: 8px 12px;
	font-size: 12px;
	color: #475569;
	display: inline-block;
	width: fit-content;
}

.news-card--regular .news-card__title {
	font-size: 18px;
	color: #0F172A;
	line-height: 1.3;
	margin: 8px 0;
}

.news-card--regular .news-card__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #475569;
}

.news-card--regular .news-card__date svg {
	flex-shrink: 0;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.about-doctor ul{
	padding-left: 30px;
	margin-bottom: 20px;
}
/* Адаптивность */
@media (max-width: 768px) {
	.news-section {
		padding: 40px 24px;
	}

	.news-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.news-card--featured {
		height: 400px;
	}
	.news-card__image{
		display: none;
	}
	.news-card__gradient{
		display: none;
	}
	a.news-card.news-card--featured{
		padding: 0;
    border: 1px solid rgb(15 23 42 / .12);
		min-height: auto;
		height: auto !important;
	}
	.news-card--featured .news-card__content{
		color: #0F172A;
		position: relative;
	}
	.news-card--featured .news-card__category{
		background: #E2E8F0;
    border-radius: 16px;
    padding: 8px 12px;
	}
	a.news-card.news-card--featured .news-card__title{
		margin: 8px 0;
		font-size: 16px;
	}
	a.news-card.news-card--featured .news-card__category{
		margin: 0;
	}
}

@media (max-width: 768px) {
	.news-card--regular .news-card__image {
		display: none;
	}

	.news-section__title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.news-card--featured {
		height: 300px !important;
	}

	.news-card--featured .news-card__content {
		padding: 24px;
	}

	.news-card--featured .news-card__title {
		font-size: 24px;
	}

	.news-card--regular {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 140px;
		gap: 12px;
	}

	.news-card--regular .news-card__title {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.news-section {
		padding: 32px 16px;
	}

	.news-card--featured {
		height: 250px !important;
	}

	.news-card--featured .news-card__content {
		padding: 20px;
	}

	.news-card--featured .news-card__title {
		font-size: 20px;
	}

	.news-card--regular {
		grid-template-columns: 1fr;
		height: auto;
	}

	.news-card--regular .news-card__image {
		height: 120px;
	}
}

.reviews-section {
	padding: 40px 0;
	max-width: 1440px;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
}

.reviews-section__title {
	font-size: 40px;
	font-weight: 700;
	color: #0F172A;
	text-align: center;
	margin-bottom: 48px;
	letter-spacing: -0.01em;
}

/* Стили для Owl Carousel */
.reviews-carousel {
	margin-bottom: 40px;
}

.reviews-carousel .owl-stage {
	display: flex;
}

.review-card {
	background: #F1F5F9;
	border-radius: 24px;
	padding: 32px;
	height: 366px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.review-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.review-card__author {
	font-size: 18px;
	font-weight: 500;
	color: #0F172A;
	margin: 0;
	line-height: 1.2;
}

.review-card__rating {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
}

.review-card__rating svg {
	width: 20px;
	height: 20px;
}

.review-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.review-card__text {
	font-size: 16px;
	color: #0F172A;
	line-height: 1.75;
	margin: 0;
	flex: 1;
	/* Ограничение текста до 7 строк */
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.review-card__text strong {
	font-weight: 600;
}

.review-card__read-more {
	background: none;
	border: none;
	color: #1E6BD0;
	font-size: 16px;
	cursor: pointer;
	padding: 0;
	margin-top: 8px;
	align-self: flex-start;
	transition: color 0.15s ease;
}

.review-card__read-more:hover {
	color: #1D6ACB;
}

/* Стили для контента модального окна с отзывом */
.modal-review-content .modal-review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.modal-review-content .modal-review-author {
	font-size: 20px;
	font-weight: 500;
	color: #0F172A;
	margin: 0;
}

.modal-review-content .modal-review-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
}

.modal-review-content .modal-review-rating svg {
	width: 20px;
	height: 20px;
}

.modal-review-content .modal-review-text {
	font-size: 16px;
	color: #0F172A;
	line-height: 1.75;
}

.modal-review-content .modal-review-text strong {
	font-weight: 600;
}

/* Остальные стили остаются без изменений */
.reviews-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
}

.reviews-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 100px;
	width: 240px;
	max-width: 100%;
}

.owl-dots {
	display: flex;
	justify-content: center;
}

.owl-dot {
	width: 32px;
	height: 2px;
	border: none;
	background: rgba(15, 23, 42, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.owl-dot.active,
.owl-dot:hover {
	background: #1E6BD0;
}

.reviews-controls {
	display: flex;
	gap: 12px;
	align-items: center;
}

.reviews-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid rgba(15, 23, 42, 0.12);
}

.reviews-button:hover {
	background: #F1F5F9;
}

.reviews-button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.reviews-button.disabled:hover {
	background: white;
}

/* Адаптивность */
@media (max-width: 992px) {
	.review-card {
		height: auto;
		min-height: 366px;
	}
	.sidebar_button{
		display: block;
		z-index: 10000;
	}
	.news-sidebar.sidebar-toggle:not(.disable_menu){
		transition: 0.2s ease all;
		position: fixed;
		top: 0;
		left: 0;
		bottom: auto;
		background: #fff;
		z-index: 9999;
		height: 100%;
		min-height: 100vh;
		opacity: 0;
		visibility: hidden;
		padding-bottom: 100px;
	}
	.news-sidebar.sidebar-toggle:not(.disable_menu).active{
		opacity: 1;
		visibility: visible;
	}
	.news-sidebar.sidebar-toggle.disable_menu {
    order: 1;
}
}

@media (max-width: 768px) {
	.reviews-section__title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.review-card {
		padding: 24px;
	}

	.review-card__author {
		font-size: 16px;
	}

	.reviews-navigation {
		flex-direction: column;
		gap: 24px;
	}

	.reviews-pagination {
		max-width: 200px;
	}
}

@media (max-width: 576px) {
	.reviews-section {
		padding: 32px 16px;
	}

	.review-card {
		padding: 20px;
	}

	.review-card__header {
		flex-direction: column;
		gap: 12px;
	}

	.reviews-controls {
		width: 100%;
		justify-content: center;
	}
}

/* Отключаем стандартные стили Owl Carousel для точек */
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
	display: none !important;
}

.grid-card .grid-card-wrapper {
	transition: 0.2s ease all;
	background-color: #1E6BD0;
	color: white;
	position: relative;
	overflow: hidden;
	position: absolute;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	height: 100%;
	width: 100%;
}
.grid-card .grid-card-wrapper .grid-card__position{
	margin: 0;
}

/*fix buttons hover*/
@media (hover: hover) {
	.grid-card-hover:hover .grid-card-wrapper {
		opacity: 1;
		visibility: visible;
	}
	.vacancy-card__details a:hover{
		color: #007bff;
	}
}

@media (hover: none) {
	.grid-card-hover:active .grid-card-wrapper {
		opacity: 1;
		visibility: visible;
	}
	.vacancy-card__details a:active{
		color: #007bff;
	}
}
body .select2-container--default .select2-selection--single .select2-selection__rendered{
	color: #0F172A;
}
body .select2-container--default .select2-selection--single{
	border-color: transparent;
	border-bottom-color: rgba(15, 23, 42, 0.12);
}
body .select2-container .select2-selection--single{
	height: 40px;
}
body .select2-container .select2-selection--single .select2-selection__rendered{
	padding-left: 0;
}
body .select2-container--default .select2-results>.select2-results__options{
	max-height: 400px;
}
body .select2-dropdown{
	border-color:  rgba(15, 23, 42, 0.12);
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
	background-color: #DBE7F7;
	color: #1E6BD0;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b{
	border: none;
	margin-left: 0;
	background: url('../images/angle-list.svg') no-repeat center center;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 30px;
	height: 30px;
	transition: 0.2s ease all;
}
body span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open.select2-container--focus .select2-selection.select2-selection--single .select2-selection__arrow b{
	transform: rotate(180deg);
}

.sa {
  width: 140px;
  height: 140px;
  padding: 26px;
	margin: auto;
}
.sa-success {
  border-radius: 50%;
  border: 4px solid #A5DC86;
  box-sizing: content-box;
  height: 80px;
  padding: 0;
  position: relative;
  width: 80px;
	box-sizing: unset !important;
}
.sa-success *{
	box-sizing: unset !important;
}
.sa-success:after, .sa-success:before {
  content: "";
  height: 120px;
  position: absolute;
  transform: rotate(45deg);
  width: 60px;
}
.sa-success:before {
  border-radius: 40px 0 0 40px;
  width: 26px;
  height: 80px;
  top: -17px;
  left: 5px;
  transform-origin: 60px 60px;
  transform: rotate(-45deg);
}
.sa-success:after {
  border-radius: 0 120px 120px 0;
  left: 30px;
  top: -11px;
  transform-origin: 0 60px;
  transform: rotate(-45deg);
  animation: rotatePlaceholder 4.25s ease-in;
}
.sa-success-placeholder {
  border-radius: 50%;
  border: 4px solid rgba(165, 220, 134, 0.25);
  box-sizing: content-box;
  height: 80px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 80px;
  z-index: 2;
}
.sa-success-fix {
  height: 90px;
  left: 28px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 5px;
  z-index: 1;
}
.sa-success-tip, .sa-success-long {
  background-color: #A5DC86;
  border-radius: 2px;
  height: 5px;
  position: absolute;
  z-index: 2;
}
.sa-success-tip {
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
  width: 25px;
  animation: animateSuccessTip 0.75s;
}
.sa-success-long {
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  width: 47px;
  animation: animateSuccessLong 0.75s;
}

@keyframes animateSuccessTip {
  0%, 54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0%, 65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0%, 5% {
    transform: rotate(-45deg);
  }
  100%, 12% {
    transform: rotate(-405deg);
  }
}

.success{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	font-weight:600;
	display:none;
	z-index:99999;
	font-size:20px;
	text-align: center;
	background: #fff;
}
.success~*{
	-webkit-transition:.5s ease;
	-o-transition:.5s ease;
	transition:.5s ease
}
.success.active~*{
	opacity:.5;
	-webkit-filter:blur(10px);
	filter:blur(10px)
}
.success.active{
	display: flex;
    flex-flow: column;
    align-items: center;
		justify-content: center;
}