	* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	}

	.container {
	max-width: 1440px;
	margin: 0 auto;
	}

	a {
	text-decoration: none;
	}

	ul,
	li {
	list-style: none;
	}

	.fa-eye {
	color: #fff;
	font-size: 14px;
	margin-right: 5px;
	}

	#impaired {
	margin-top: 25px;
	}

	.impaired a {
	display: flex;
	align-items: center;
	gap: 20px;
	}

	.impaired__card {
	background: #0f3f6f;
	padding: 10px;
	width: 42px;
	height: 35px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s linear;
	}

	.impaired__card .fa-eye {
		margin-right: 0 !important;
		font-size: 22px;
	}

	.impaired__card:hover {
		background: #1788b5;
	}

	.impaired__title {
	font-family: Montserrat;
	font-size: 13px;
	color: #1788b5;
	font-weight: bold;
	width: 150px;
	transition: 0.2s ease-out;
	}

	.impaired__title:hover {
	color: #388aaa;
	}

	@media (max-width: 1440px) {
	.impaired {
		padding: 0 15px;
	}
	}

	/* hero */
	.hero {
	margin-top: 25px;
	position: relative;
	width: 100%;
	height: 330px;
	background: url('../img/bg.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	}

	.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 75, 135, 0.5); /* #004B87 с прозрачностью 50% */
	z-index: 1;
	}

	.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 20px;
	}

	.hero-logo {
	width: 100px;
	max-width: 25vw;
	height: auto;
	margin-bottom: 15px;
	}

	.hero__title {
	font-size: clamp(18px, 3vw, 36px);
	font-weight: bold;
	font-family: Montserrat;
	text-transform: uppercase;
	color: #fff;
	transition: 0.3s ease;
	margin-top: 10px;
	}

	.hero__title:hover {
	color: #ccc;
	}

	@media (max-width: 550px) {
	.hero {
		height: 250px;
	}
	}

	header {
	background: #148ab7;
	color: #fff;
	}

	.navbar {
	font-family: Open Sans;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	position: relative;
	}

	.logo {
	font-weight: bold;
	font-size: 20px;
	}

	.menu-toggle {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	}

	/* Главное меню */
	.nav-menu {
	list-style: none;
	display: flex;
	gap: 20px;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	}

	.nav-menu li {
	position: relative;
	}

	.nav-menu a {
	font-size: 14px;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	padding: 8px;
	display: block;
	transition: 0.3s ease;
	}

	.nav-menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px; /* отступ от текста */
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: right;
	}
	.nav-menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
	}

	.nav-menu li ul.submenu {
	opacity: 0;
	visibility: hidden; /* вместо max-height для более надежного скрытия */
	position: absolute;
	top: 100%;
	left: 0;
	background: #12729b;
	list-style: none;
	min-width: 180px;
	border-radius: 4px;
	z-index: 100;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-10px); /* эффект плавного появления */
	}

	/* Вложенные подподменю */
	.nav-menu li ul.submenu li ul.submenu {
	top: 0;
	left: 100%;
	transform: translateX(-10px); /* плавное появление справа */
	}

	/* Появление при наведении */
	.nav-menu li:hover > ul.submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	}

	.nav-menu li ul.submenu li:hover > ul.submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	}

	/* Стили для элементов подменю */
	.nav-menu li ul.submenu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-menu li ul.submenu li a {
	padding: 8px 12px;
	display: block;
	color: #fff;
	text-decoration: none;
	}

	/* Адаптив */
	@media (max-width: 1440px) {
	.menu-toggle {
		padding: 0 15px;
	}

	header .search-icon {
		padding: 0 30px;
		margin-left: 5px !important;
	}
	}

	@media (max-width: 992px) {
	.nav-menu {
		flex-direction: column;
		position: static;
		max-height: none;
		opacity: 1;
		background: #148ab7;
	}

	.nav-menu li ul.submenu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
	}
	}

	.nav-menu li ul.submenu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-menu li ul.submenu li a {
	padding: 8px 12px;
	}

	/* Под-Подменю */
	.nav-menu li ul.submenu li ul.submenu {
	top: 0;
	left: 100%;
	}

	.nav-icons {
	display: flex;
	gap: 12px;
	}

	.nav-icons a {
	color: #fff;
	font-size: 25px;
	display: inline-block;
	transition: transform 0.3s ease;
	}

	.nav-icons a:hover {
	transform: scale(1.1);
	}

	.dropdown__wrapper {
	display: flex;
	}

	.option {
	opacity: 0.8;
	}

	.dropdown-img {
	width: 25px;
	height: 18px;
	object-fit: cover;
	}

	.dropdown-img {
	border: 1px solid #003366;
	border-radius: 4px;
	}

	/* Адаптив */
	@media (max-width: 992px) {
	.menu-toggle {
		display: block;
	}

	.nav-menu {
		overflow: hidden;
		flex-direction: column;
		width: 100%;
		background: #4da2c4;
		position: absolute;
		top: 100%;
		left: 0;
		max-height: 0;
		opacity: 0;
		z-index: 1000;
	}

	.nav-menu.show {
		max-height: none;
		opacity: 1;
	}

	.nav-menu li ul.submenu {
		position: static;
	}
	}

	header .search-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	}

	header .search-icon {
	width: 25px;
	height: 20px;
	background: url('../img/search.png') center/contain no-repeat;
	cursor: pointer;
	margin-left: 20px;
	}

	header .search-input {
	display: none;
	position: absolute;
	top: 50px;
	right: 0;
	width: 200px;
	padding: 8px;
	border-radius: 6px;
	z-index: 1000;
	}

	header .search-input.show {
	display: inline-block;
	animation: slideDown 0.3s ease-out;
	}
	@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
	}

	/* slider */
	.slider-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	margin-top: 23px;
	}

	.slider {
	position: relative;
	overflow: hidden;
	}

	.slider h4 {
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
	}

	.slide {
	position: relative;
	width: 100%;
	height: 425px;
	display: none;
	background-size: cover;
	background-position: center;
	}

	.slide.active {
	display: block;
	}

	.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	}

	.slide-content {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	max-width: 45%;
	z-index: 2;
	}

	.dots {
	position: absolute;
	bottom: 40px;
	left: 20px;
	display: flex;
	gap: 5px;
	z-index: 2;
	}

	.dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #bbb;
	cursor: pointer;
	}

	.dot.active {
	background: #fff;
	}

	.mayor-card {
	background: #1788b5;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 20px;
	}

	.mayor-card-btn {
	background: #1788b5;
	padding: 15px;
	border-radius: 5px;
	font-size: 14px;
	font-family: Open Sans;
	text-transform: uppercase;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin-top: 15px;
	}

	.mayor-card-btn a {
	color: #fff;
	transition: 0.2s linear;
	}

	.mayor-card-btn a:hover {
	color: #e5e5e5;
	}

	.mayor-card__title {
	font-family: Open Sans;
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	}

	.mayor-name {
	font-family: Open Sans;
	font-size: 15px;
	margin-top: 20px;
	font-weight: bold;
	text-transform: uppercase;
	}

	.slider-btn {
	display: inline-block;
	background: #004b87 70%;
	color: #fff;
	padding: 10px 15px;
	font-size: 14px;
	font-family: Montserrat;
	font-weight: bold;
	text-transform: uppercase;
	transition: background 0.3s;
	}

	.slider-btn:hover {
	background: #084f72;
	}

	.slide__subtitle {
	font-family: Open Sans;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 45px;
	}

	.slide-date {
	color: #fff;
	font-family: Montserrat;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	margin-top: 45px;
	margin-bottom: 20px;
	}

	.slide-date-link {
	color: #fff;
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 600;
	background: #004b87;
	text-transform: uppercase;
	padding: 10px;
	transition: 0.3s ease;
	}

	.slide-date-link:hover {
	margin-left: 10px;
	background: #195c92;
	}

	.fa-user {
	font-size: 150px;
	}

	@media (max-width: 1440px) {
	.slider-container {
		padding: 0 15px;
	}
	}

	/* планшеты */
	@media (max-width: 1024px) {
	.slider-container {
		grid-template-columns: 1fr; /* в колонку */
	}
	.slide {
		height: 380px;
	}
	.slide-content {
		max-width: 70%;
	}
	.fa-user {
		font-size: 100px;
	}
	}

	/* мобильные */
	@media (max-width: 768px) {
	.slider {
		height: auto;
	}
	.slide {
		height: 300px;
	}
	.slide-content {
		max-width: 100%;
		top: 10px;
		left: 10px;
	}
	.slide__subtitle {
		font-size: 12px;
		margin-top: 20px;
	}
	.slide-date {
		font-size: 11px;
		margin-top: 15px;
	}
	.slider-btn {
		font-size: 12px;
		padding: 6px 10px;
	}
	.mayor-card {
		padding: 15px;
	}
	.mayor-name {
		font-size: 13px;
	}
	.fa-user {
		font-size: 80px;
	}
	}

	@media (max-width: 480px) {
	/* .slide {
										height: 180px;
									} */
	.slide__subtitle {
		font-size: 11px;
	}
	.mayor-name {
		font-size: 12px;
	}
	.fa-user {
		font-size: 60px;
	}

	.slider h4 {
		font-size: 11px;
	}

	.slide-date-link {
		font-size: 11px;
	}

	.dots {
		bottom: 25px;
	}
	}

	/* last-news */
	.last-news {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 80px;
	}

	/* .last-news__cards {
										display: flex;
										flex-wrap: wrap;
										justify-content: space-between;
										gap: 30px;
										} */

	.last-news__img {
	width: 312px;
	height: 281px;
	object-fit: cover;
	border-radius: 5px 5px 0 0;
	filter: brightness(80%);
	background: rgba(0, 0, 0, 0.4);
	}

	.last-news__content {
	background: #ececec;
	width: 311px;
	height: 275px;
	border-radius: 0 0 5px 5px;
	padding: 30px 15px;
	}

	.last-news-btn {
	color: #6fbfff;
	font-size: 14px;
	font-family: Roboto Serif;
	font-weight: bold;
	background: #1788b5;
	text-transform: uppercase;
	padding: 12px 20px;
	transition: 0.3s ease;
	}

	.last-news-btn:hover {
	background: #39768f;
	}

	.last-news-text {
	font-size: 14px;
	font-family: Roboto;
	font-weight: bold;
	color: #626262;
	margin-top: 30px;
	}

	.last-news__time-data {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #1788b5;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 12px !important;
	}

	.fa-calendar {
	margin-right: 10px;
	}

	.last-news-data {
	color: #1788b5;
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	}

	.last-news__link {
	color: #6fbfff;
	font-size: 11px;
	font-family: Roboto Serif;
	font-weight: bold;
	background: #e0e0e0;
	text-transform: uppercase;
	padding: 12px;
	transition: 0.3s ease;
	}

	.last-news__link:hover {
	background: #39768f;
	}

	@media (max-width: 1440px) {
	.last-news {
		padding: 0 15px;
	}
	}

	@media (max-width: 760px) {
	.last-news__img {
		width: 100%;
		height: auto;
	}

	.last-news__content {
		width: 100%;
	}

	.last-news__content {
		height: auto;
	}
	}

	@media (max-width: 550px) {
	.last-news-btn,
	.last-news-data,
	.last-news__link,
	.last-news-text {
		font-size: 12px;
	}
	}

	/* events */
	#events {
	background: #1788b5;
	padding-top: 80px;
	padding-bottom: 50px;
	margin-top: 80px;
	}

	.events__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 50px;
	}

	.events__title {
	display: inline-block;
	position: relative;
	font-family: Inter;
	font-size: 25px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 2px solid #fff;
	}

	.events-img {
	width: 330px;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
	}

	.events-text {
	margin-top: 15px;
	font-family: Open Sans;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	width: 310px;
	margin-bottom: 15px;
	}

	.events-date {
	font-family: Roboto Serif;
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	}

	.events__link {
	margin-top: 30px;
	}

	.events-link {
	font-family: Open Sans;
	font-size: 13px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	border: 1px solid #fff;
	padding: 10px;
	transition: 0.3s linear;
	}

	.events-link:hover {
	background: #fff;
	color: #1788b5;
	}

	@media (max-width: 1440px) {
	.events {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.events__title {
		font-size: 20px;
	}

	.events-img {
		width: 100%;
		height: auto;
	}

	.events__cards {
		justify-content: center;
	}

	.events-text {
		width: 100%;
	}
	}

	/* project */
	.project {
	margin-top: 80px;
	}

	.project__title {
	font-family: Inter;
	font-size: 25px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	}

	.project-cnt {
	margin-top: 30px;
	}

	.project__text {
	font-family: Montserrat;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	}

	.project__date-view {
	font-family: Open Sans;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: #1788b5;
	display: flex;
	align-items: center;
	}

	.project__cards {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	.project__card {
	padding: 20px 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	width: 550px;
	border-radius: 5px;
	border-left: 5px solid #1788b5;
	transition: 0.3s linear;
	}

	.project__card:hover {
	background: #aac1cb;
	}

	.project__data {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	font-size: 12px !important;
	}

	.fa-folder-open {
	font-size: 60px;
	color: #1788b5;
	}

	.fa-clock {
	font-size: 17px;
	margin-right: 10px;
	}

	@media (max-width: 1440px) {
	.project {
		padding: 0 15px;
	}
	}

	@media (max-width: 1160px) {
	.project__card {
		width: 100%;
	}
	}

	@media (max-width: 768px) {
	.project__title {
		font-size: 20px;
	}

	.project__text {
		font-size: 12px;
	}

	.project__date-view {
		font-size: 12px;
	}
	}

	/* vacancy */
	.vacancy {
	margin-top: 80px;
	}

	.vacancy__title {
	font-family: Inter;
	font-size: 25px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	}

	.vacancy__cards {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	.vacancy__card {
	padding: 20px;
	width: 490px;
	height: 370px;
	border-radius: 10px;
	background: #1788b5;
	transition: 0.3s linear;
	}

	.vacancy__card:hover {
	background: #136484;
	}

	.vacancy-cnt {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	}

	.vacancy-img {
	width: 50px;
	}

	.vacancy__subtitle {
	font-family: Roboto Flex;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	}

	.vacancy-text {
	margin-top: 20px;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 300;
	color: #cfcfcf;
	}

	.vacancy-date-view {
	position: relative;
	margin-top: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	}

	.vacancy-date-view::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #fff;
	top: -25px;
	border-radius: 5px;
	}

	.vacancy-data {
	display: flex;
	align-items: center;
	font-family: Open Sans;
	font-size: 13px;
	font-weight: 500;
	}

	@media (max-width: 1440px) {
	.vacancy {
		padding: 0 15px;
	}
	}

	@media (max-width: 1024px) {
	.vacancy__card {
		width: 100%;
		height: auto;
	}
	}

	@media (max-width: 1024px) {
	.vacancy__card {
		width: 100%;
		height: auto;
	}
	}

	@media (max-width: 550px) {
	.vacancy__subtitle {
		font-size: 14px;
	}

	.vacancy-date-view {
		margin-top: 40px;
	}

	.vacancy__title {
		font-size: 20px;
	}

	.vacancy-text,
	.vacancy-data {
		font-size: 12px;
	}
	}

	/* last-doc */
	.last-doc {
	margin-top: 80px;
	}

	.last-doc__cnt {
	display: flex;
	align-items: center;
	gap: 50px;
	}

	.last-doc__title {
	font-family: Inter;
	font-size: 25px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	}

	.last-doc__cards {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	}

	.last-doc__card {
	width: 100%;
	background: #1788b5;
	border: 1px solid #ccc;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	padding: 30px 20px;
	}

	.last-doc__text {
	margin-top: 15px;
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 15px;
	}

	.last-doc-accepting {
	padding-top: 15px;
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
	}

	.last-doc-btn {
	color: #003366;
	font-size: 16px;
	font-family: Open Sans;
	font-weight: 500;
	background: #b0c4de;
	padding: 10px 20px;
	border-radius: 7px;
	text-transform: uppercase;
	transition: 0.3s linear;
	}

	.last-doc-btn:hover {
	background: #003366;
	color: #b0c4de;
	}

	@media (max-width: 1440px) {
	.last-doc {
		padding: 0 15px;
	}
	}

	@media (max-width: 550px) {
	.last-doc__text {
		font-size: 14px;
	}

	.last-doc__title {
		font-size: 20px;
	}

	.last-doc-accepting {
		font-size: 12px;
	}

	.last-doc-btn {
		font-size: 14px;
	}

	.last-doc__cnt {
		gap: 20px;
	}
	}

	/* state */
	#state {
	background: #9c9c9c;
	padding-top: 60px;
	padding-bottom: 30px;
	margin-top: 60px;
	}

	.state__title {
	font-family: Inter;
	font-size: 25px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	position: relative;
	}

	.state__title::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: #1788b5;
	top: 60px;
	}

	.state__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 90px;
	}

	.state__card {
	padding: 10px 20px;
	position: relative;
	background: #1788b5;
	display: flex;
	gap: 10px;
	align-items: center;
	overflow: hidden;
	width: 400px;
	height: 130px;
	border-radius: 2px;
	transition: 0.3s linear;
	}

	.state__card:hover {
	background: #3382a1;
	}

	.state__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../img/graphy.png');
	background-repeat: repeat;
	background-size: 700px auto;
	opacity: 0.15;
	z-index: 0;
	mix-blend-mode: multiply;
	pointer-events: none;
	}

	.state__card * {
	position: relative;
	z-index: 1;
	}
	.state-pic {
	width: 80px;
	}

	.state-desc {
	color: #fff;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	}

	@media (max-width: 1440px) {
	.state {
		margin: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.state__cards {
		flex-direction: column;
		justify-content: center;
	}

	.state__card {
		width: 100%;
		box-sizing: border-box;
	}

	.state__title {
		font-size: 20px;
	}
	}

	@media (max-width: 550px) {
	.state-desc {
		font-size: 12px;
	}

	.state-pic {
		width: 50px;
		height: auto;
	}
	}

	/* photogallery dots */
	.carousel-wrapper {
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 0 12px;
	}

	.carousel-track {
	margin-top: 50px;
	display: flex;
	transition: transform 0.6s ease;
	}

	.carousel-track img {
	width: 532px;
	height: 300px;
	margin: 0 10px;
	border-radius: 5px;
	object-fit: cover;
	flex-shrink: 0;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	}

	.indicators {
	text-align: center;
	margin-top: 20px;
	}

	.indicator {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px;
	background: #fff;
	border: 1px solid #1788b5;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
	}

	.indicator.active {
	background: #1788b5;
	}

	.carousel__title {
	text-align: center;
	font-family: Inter;
	font-size: 25px;
	font-weight: bold;
	text-transform: uppercase;
	color: #1788b5;
	position: relative;
	}

	@media (max-width: 1440px) {
	.carousel-wrapper {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.carousel-track img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	}

	/* footer */
	#footer {
	background: #1788b5;
	margin-top: 50px;
	padding-top: 60px;
	padding-bottom: 60px;
	color: #fff;
	}

	.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
	}

	.footer__application {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 50px;
	}

	.footer iframe {
	width: 320px !important;
	height: 200px !important;
	margin-top: 30px;
	}

	.footer__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	}

	.footer-pic {
	width: 80px;
	}

	.footer-app {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: #1b9ed2;
	border-radius: 2px;
	width: 45px;
	height: 35px;
	transition: transform 0.3s ease;
	}

	.footer-app:hover {
	transform: scale(1.1);
	background: #33aada;
	}

	.footer__title {
	margin-top: 20px;
	font-family: Open Sans;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	}

	.footer-desc {
	font-family: Inter;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	}

	.footer-sub {
	width: 190px;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-top: 20px;
	}

	.footer__column ul li {
	margin-top: 20px;
	width: 190px;
	}

	.footer-contact {
	font-family: Oswald !important;
	font-size: 16px !important;
	font-weight: 500;
	color: #fff;
	margin-top: 20px;
	}

	.footer__column ul li a {
	position: relative;
	font-family: Open Sans;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-top: 20px;
	transition: 0.3s linear;
	}

	.footer__column ul li a:hover {
	color: #b0c4de;
	}

	.fa-facebook-f {
	color: #fff;
	}

	.fa-instagram {
	color: #fff;
	}

	@media (max-width: 1440px) {
	#footer {
		padding-left: 15px;
		padding-right: 15px;
	}
	}

	@media (max-width: 768px) {
	.footer {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer-sub {
		width: 100%;
	}

	.footer__column ul li {
		width: 100%;
	}
	}

	@media (max-width: 550px) {
	.footer-desc {
		font-size: 14px;
	}
	}

	/* about */
	#about .container {
	max-width: 1200px;
	}
	.about {
	margin-top: 60px;
	}
	.about-text {
	margin-top: 30px;
	}
	.about__cards {
	margin-top: 10px;
	margin-bottom: 50px;
	}
	.about__card {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	.about-picture {
	width: 100%;
	height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: 40px;
	border-radius: 5px;
	}
	.about-pic {
	width: 224px;
	height: 138px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
	}
	.about__title {
	margin-bottom: 15px;
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	}
	.about__subtitle {
	color: #252525;
	text-align: justify;
	font-family: Inter;
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	}
	.about__text {
	color: #333;
	text-align: justify;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	}
	@media (max-width: 1200px) {
	.about {
		padding: 0 15px;
	}
	}
	@media (max-width: 1024px) {
	.about-picture {
		height: 400px;
	}
	}
	@media (max-width: 768px) {
	.about__card {
		flex-direction: column;
	}
	.about-picture {
		height: 300px;
	}
	.about-pic {
		width: 100%;
		height: 300px;
	}
	}
	@media (max-width: 500px) {
	.about-picture {
		height: 230px;
	}
	.about-pic {
		height: 230px;
	}
	}

	.article {
	margin-top: 30px;
	}
	.article__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	.article__card {
	box-shadow: 0px -1px 14px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 0px -1px 14px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px -1px 14px 0px rgba(0, 0, 0, 0.75);
	background: #1788b5;
	margin-top: 40px;
	transition: 0.3s linear;
	}

	.article__card:hover {
	background: #1c97c7;
	}

	.article-pic {
	width: 428px;
	height: 241px;
	object-fit: cover;
	border-radius: 5px;
	}
	.article__subtitle {
	color: #fff;
	font-family: Inter;
	font-weight: 600;
	font-size: 19px;
	line-height: 27px;
	width: 408px;
	text-align: left;
	}
	.article-cnt {
	padding: 0 10px;
	margin-top: 10px;
	padding-bottom: 15px;
	}
	.article__desc {
	margin-top: 10px;
	color: #fff;
	font-family: Inter;
	font-weight: 300;
	font-size: 16px;
	line-height: 27px;
	width: 350px;
	text-align: left;
	margin-bottom: 20px;
	}
	.article-time {
	color: #fff;
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: left;
	}
	.article-viewing {
	color: #fff;
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	float: right;
	}
	.article-button {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	}
	.article-btn {
	margin-bottom: 50px;
	color: #454545;
	font-family: Inter;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	border: 1px solid #1788b5;
	padding: 10px 30px;
	border-radius: 10px;
	transition: 0.3s linear;
	}
	.article-btn:hover {
	background: #1788b5;
	color: #fff;
	}
	.article__title {
	color: #1b1b1b;
	font-weight: 700;
	font-size: 26px;
	line-height: 27px;
	font-family: Arial;
	text-transform: uppercase;
	}
	@media (max-width: 1440px) {
	.article {
		padding: 0 15px;
	}
	}
	@media (max-width: 885px) {
	.article__title {
		text-align: center;
	}
	.article__cards {
		justify-content: center;
	}

	.article__card {
		width: 100%;
	}
	.article-pic {
		width: 100%;
		height: auto;
	}
	}
	@media (max-width: 550px) {
	.article__subtitle {
		font-size: 14px;
		width: 100%;
	}
	.article__desc {
		font-size: 13px;
		width: 100%;
	}
	.article-time {
		font-size: 12px;
	}
	.article-viewing {
		font-size: 12px;
	}
	.article-btn {
		font-size: 16px;
	}
	}

	#info .container {
	max-width: 1200px;
	}

	#chart_div {
	width: 100% !important;
	max-width: 100%;
	height: 600px !important; /* фиксируем высоту */
	}
	@media (max-width: 768px) {
	#chart_div {
		height: 400px !important;
	}

	.info {
		width: 100%;
		overflow-x: auto;
	}
	}
	@media (max-width: 480px) {
	#chart_div {
		height: 300px !important;
	}
	}

	.info {
	margin-top: 60px;
	}

	.info__cards {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

	.info__card {
	border-radius: 5px;
	margin-top: 20px;
	width: 387px;
	background: #1788b5;
	box-shadow: -1px 4px 8px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -1px 4px 8px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 4px 8px 0px rgba(0, 0, 0, 0.75);
	transition: 0.2s linear;
	}

	.info__card:hover {
	background: #3865ad;
	}

	.info__card:hover p {
	color: #fff;
	}

	.info-img {
	width: 387px;
	height: 230px;
	object-fit: cover;
	border-radius: 5px;
	}

	.info-text {
	text-align: justify;
	padding: 10px;
	color: #fff;
	font-family: Inter;
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	width: 387px;
	}

	@media (max-width: 1200px) {
	.info {
		padding: 0 15px;
	}
	}

	@media (max-width: 800px) {
	.info__cards {
		justify-content: center;
	}
	}

	@media (max-width: 768px) {
	.info__title {
		font-size: 20px;
	}

	.info__card {
		width: 100%;
	}

	.info-img {
		width: 100%;
		height: auto;
	}

	.info-text {
		width: 100%;
		font-size: 14px;
	}
	}

	.container .internet_reception {
	max-width: 1340px;
	}

	.internet_reception__contact {
	width: 750px;
	height: 55px;
	background: #1788b5;
	box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	border-radius: 6px;
	margin-top: 30px;
	border: 2px solid #5a8b9e;
	outline: none;
	padding: 12px;
	}

	.internet_reception__contact::placeholder {
	color: #eee;
	font-size: 14px;
	font-family: Inter;
	font-weight: 500;
	}

	.internet_reception__contact-link {
	margin-top: 50px;
	width: 750px;
	height: 55px;
	background: #1788b5;
	box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 3px 5px -1px rgba(0, 0, 0, 0.75);
	border-radius: 6px;
	border: 2px solid #fff;
	margin-top: 30px;
	outline: none;
	padding: 12px;
	margin-bottom: 50px;
	}

	.internet_reception__contact-link::placeholder {
	color: #eee;
	font-size: 14px;
	font-family: Inter;
	font-weight: 500;
	}

	.internet_reception__btn {
	width: 150px;
	height: 50px;
	background: #1788b5;
	color: #fff;
	font-size: 14px;
	font-family: Inter;
	font-weight: 500;
	box-shadow: -6px 0px 16px 0px rgba(0, 0, 0, 0.71);
	-webkit-box-shadow: -6px 0px 16px 0px rgba(0, 0, 0, 0.71);
	-moz-box-shadow: -6px 0px 16px 0px rgba(0, 0, 0, 0.71);
	border-radius: 10px;
	margin-top: 30px;
	border: none;
	outline: none;
	padding: 12px;
	}

	.internet_reception__btn::placeholder {
	color: #fff;
	font-size: 14px;
	font-family: Inter;
	font-weight: 500;
	}

	@media (max-width: 1440px) {
	.internet_reception {
		padding: 0 15px;
	}
	}

	@media (max-width: 800px) {
	.internet_reception__contact {
		width: 100%;
	}

	.internet_reception__contact-link {
		width: 100%;
	}
	}

	#object-more .container {
	max-width: 1200px;
	}

	.object-more {
	margin-top: 60px;
	}

	.table-content {
	margin-bottom: 30px;
	}

	.object-more__title {
	margin-top: 30px;
	margin-bottom: 50px;
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	}

	.td_left__title {
	color: #1788b5;
	font-family: Inter;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	}

	.td_left__subtitle {
	padding: 10px;
	width: 576px;
	color: #1788b5;
	font-family: Inter;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	}

	.td_left {
	padding: 10px;
	}

	.td p a {
	color: #1788b5;
	font-weight: 500;
	font-size: 14px;
	padding: 10px;
	}

	.content-gallery.popup-gallery a.popup img.popup-image {
	width: 300px !important;
	height: 200px !important;
	object-fit: cover;
	border-radius: 5px;
	}

	.frame_blc iframe {
	height: 100% !important;
	}

	@media (max-width: 1200px) {
	.object-more {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.td_left__subtitle {
		width: 100%;
	}
	}

	@media (max-width: 500px) {
	.td_left__title {
		font-size: 13px;
	}

	.td_left__subtitle {
		font-size: 13px;
	}
	}

	.documentsMore {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 80px;
	}

	.documentsMore__iframe {
	text-align: center;
	margin-top: 50px;
	width: 100%;
	max-width: 1000px;
	height: 700px;
	}

	.documentsMore__main {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 20px;
	column-gap: 10px;
	margin-top: 40px;
	}

	.documentsMore__fields {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-evenly;
	}

	.documentsMore__download {
	border-radius: 4px;
	border: 1px solid #1788b5;
	background: transparent;
	padding: 10px;
	transition: 0.3s linear;
	}

	.documentsMore__download:hover {
	background: #1b8cb8;
	}

	.documentsMore__download a {
	color: #1788b5;
	font-family: Arial;
	font-size: 16px;
	font-weight: 400;
	}

	.documentsMore__download:hover a {
	color: #fff;
	}

	.documentsMore__btn {
	display: inline;
	position: relative;
	margin-right: 10px;
	font-family: Arial;
	}

	.documentsMore__date {
	color: #1788b5;
	font-family: Arial;
	font-weight: 400;
	font-size: 14px;
	}

	.documentsMore__location {
	color: #1788b5;
	font-family: Arial;
	font-weight: 400;
	font-size: 14px;
	}

	.documentsMore__btn svg {
	background-color: #dcdcdc;
	padding: 7px 5px;
	border-radius: 4px;
	cursor: pointer;
	width: 1.3em;
	height: 1.3em;
	}

	.documentsMore__copy {
	display: none;
	background: #1788b5;
	color: #fff;
	position: absolute;
	top: -40px;
	right: 0;
	padding: 5px;
	border-radius: 3px;
	font-weight: 400;
	z-index: 2;
	font-size: 14px;
	}

	.documentsMore .active {
	display: block;
	}

	.document-more__title {
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}

	#news {
	margin-top: 90px;
	}
	#news-more .container {
	max-width: 1200px;
	}
	.news-more {
	margin-top: 60px;
	}
	.news-more__title {
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	}
	.news-more__content {
	display: flex;
	margin-top: 50px;
	margin-bottom: 20px;
	}
	.news-more__subtitle {
	width: 100%;
	text-align: justify;
	margin-top: 20px;
	color: #1788b5;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	}
	.news-more-text {
	width: 100%;
	text-align: justify;
	margin-top: 15px;
	color: #1788b5;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	margin-top: 15px;
	}
	.news-more__cnt {
	display: flex;
	align-items: center;
	margin-left: 20px;
	}
	.news-more__views {
	display: flex;
	align-items: center;
	color: #1788b5;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	margin-left: 3px;
	}
	.news-more__views-date {
	display: flex;
	align-items: center;
	color: #1788b5;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	}
	.news-more__image {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	}
	@media (max-width: 1200px) {
	.news-more {
		padding: 0 15px;
	}
	}
	@media (max-width: 1024px) {
	.news-more {
		align-items: center;
	}
	}
	@media (max-width: 1024px) {
	.news-more {
		align-items: center;
	}
	}

	.photogallery__card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
	}

	/* @media (max-width: 768px) {
		.photogallery__card {
			justify-content: center !important;
		}
		.photogallery-pic {
			width: 350px !important;
			height: 200px !important;
		}
		} */

	.photogallery {
	margin-top: 60px;
	}

	.photogallery__cards {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	}

	.photogallery__big {
	width: 800px;
	}

	.photogallery__pic {
	width: 350px;
	height: 200px;
	object-fit: cover;
	}

	@media (max-width: 1440px) {
	.photogallery {
		padding: 0 15px;
	}
	}

	@media (max-width: 820px) {
	.photogallery__pic {
		width: 100%;
		height: auto;
	}
	}

	.lg-outer .lg-object {
	padding: 0 0 50px 0;
	width: 300px;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
	/* margin-bottom: 40px; */
	}

	.news-more__text p {
	font-family: Roboto;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	padding-top: 15px;
	}

	#lg-content-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	}

	#lg-toolbar-1 {
	text-align: center;
	color: #1788b5;
	font-size: 18px;
	font-weight: 700;
	}

	@media (max-width: 550px) {
	.news-more__text p {
		font-size: 13px;
	}

	.news-more__title {
		font-size: 15px;
	}

	.breadcrumb__item-option {
		font-size: 12px !important;
	}

	.news-more__views-date {
		font-size: 13px;
	}

	#lg-toolbar-1 {
		font-size: 15px;
	}
	}

	.photogallery-pic {
	width: 350px;
	height: 200px;
	object-fit: cover;
	}

	@media (max-width: 550px) {
	.photogallery-pic {
		width: 100%;
		height: auto;
	}
	}

	.breadcrumbs-more {
	position: relative;
	display: flex;
	margin: 50px 0 0;
	}
	.breadcrumbs {
	position: relative;
	display: flex;
	align-items: center;
	margin: 50px -4px 0;
	}
	.breadcrumb__item,
	.breadcrumb__link,
	.breadcrumb__item {
	position: relative;
	display: block;
	margin: 0 5px;
	font-size: 14px;
	color: #1788b5;
	font-weight: 700;
	font-family: Inter;
	text-transform: uppercase;
	}
	.breadcrumb__item-option {
	position: relative;
	font-family: Inter;
	display: block;
	margin: 0 5px;
	font-size: 14px;
	line-height: 20px;
	color: #a0a0a0;
	font-weight: 700;
	text-transform: uppercase;
	}
	.breadcrumb-array {
	position: absolute;
	bottom: 0;
	right: -10px;
	}
	.fa-house {
	color: #bbb;
	margin-top: 4px;
	}
	@media (max-width: 1400px) {
	.breadcrumbs {
		margin: 50px 0 0 40px !important;
	}
	}
	@media (max-width: 550px) {
	.breadcrumbs {
		margin: 50px 0 0 30px !important;
	}
	.breadcrumb__item {
		font-size: 14px !important;
	}
	}
	@media (max-width: 430px) {
	.breadcrumbs-more {
		margin: 50px 0 0 20px !important;
	}
	}
	.navigation {
	margin-top: 35px !important;
	margin-bottom: 100px !important;
	}
	.navigation a {
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 21.78px;
	text-align: left;
	color: #1788b5;
	border: 1px solid #1788b5;
	padding: 10px;
	border-radius: 2px;
	transition: 0.3s ease;
	}

	.navigation a:hover {
	background: #374aaa;
	color: #fff;
	}

	.navigation span {
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 21.78px;
	text-align: left;
	color: #1788b5;
	/* border: 1px solid #2f4097; */
	padding: 10px;
	transition: 0.3s ease;
	}

	.navigation span:hover {
	background: #2f4097;
	color: #fff;
	}

	.section-title {
	margin-top: 50px;
	margin-bottom: 60px;
	color: #1788b5;
	font-weight: 400;
	font-size: 36px;
	text-align: center;
	font-family: Roboto;
	}

	@media (max-width: 1385px) {
	.pages {
		padding: 0 10px;
	}
	}

	@media (max-width: 550px) {
	.section-title {
		font-size: 20px;
	}

	.article-more__views-date {
		font-size: 13px !important;
	}
	}

	@media (max-width: 742px) {
	.content-gallery {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.navigation {
		margin-bottom: 30px !important;
	}

	.navigation span {
		font-size: 13px;
		padding: 7px;
	}

	.navigation a {
		font-size: 13px;
		padding: 7px;
	}
	}

	table {
	float: none !important;
	}

	.pages-text {
	margin-top: 50px !important;
	margin-bottom: 60px !important;
	color: #333;
	font-weight: 400;
	font-size: 17px;
	text-align: justify;
	font-family: Roboto;
	}

	.pages-text p {
	padding-top: 20px;
	}

	@media (max-width: 550px) {
	.pages-text {
		font-size: 14px;
	}
	}

	.table {
	margin-top: 20px;
	float: none !important;
	width: 100% !important;
	}

	.table tr {
	color: #1788b5;
	font-weight: 400;
	font-size: 15px;
	text-align: justify;
	font-family: Roboto;
	}

	.table td {
	padding: 10px !important;
	}

	.table p {
	padding: 10px;
	}

	.popup {
	padding: 10px;
	}

	.popup-image {
	width: 350px;
	height: 400px;
	object-fit: cover;
	}

	.employees__cards {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	}

	.employees__card {
	margin: 0 20px;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 2px;
	padding: 5px;
	background: #1788b5;
	box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 4px 6px 0px rgba(0, 0, 0, 0.75);
	}

	.employees-pic {
	width: 250px;
	height: 245px;
	object-fit: cover;
	}

	.employees-desc {
	margin-top: 15px;
	color: #fff;
	font-size: 16px;
	font-family: Roboto;
	font-weight: 700;
	line-height: 20px;
	}

	.employees-sub {
	padding-bottom: 10px;
	margin-top: 5px;
	color: #bab3b3;
	font-size: 14px;
	font-family: Inter;
	font-weight: 700;
	line-height: 20px;
	}

	@media (max-width: 1200px) {
	.employees {
		padding: 0 15px;
	}
	}

	@media (max-width: 550px) {
	.employees-pic {
		width: 100%;
		height: auto;
	}	

	.employees__title {
		font-size: 20px;
	}

	.employees-desc {
		font-size: 14px;
	}

	.employees-sub {
		font-size: 12px;
	}

	.employees__cards {
		justify-content: center;
	}
	}

	#employee-more .container {
	max-width: 1200px;
	}

	.employee-more {
	margin-top: 60px;
	margin-bottom: 100px;
	}

	.employee-more__content {
	border: 3px solid #1788b5;
	margin-top: 50px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 5px;
	}

	.employee-more__title {
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}

	.employee-more__desc {
	margin-top: 20px;
	color: #1f1f1f;
	font-family: Inter;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	}

	.employee-more-pic {
	width: 255px;
	height: 290px;
	object-fit: cover;
	}

	.employee-more-desc {
	color: #1788b5;
	font-family: Roboto;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}

	.employee-more p {
	margin-top: 10px;
	color: #1788b5;
	font-family: Inter;
	font-size: 14px;
	font-weight: 400;
	}

	.employee-more-sub {
	color: #1788b5;
	font-family: Inter;
	font-size: 22px;
	font-weight: 500;
	line-height: 20px;
	}

	.employee-more-span {
	margin-left: 10px;
	color: #1788b5;
	font-family: Inter;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	}

	.employee-more-cnt {
	display: flex;
	margin-top: 20px;
	}

	.employee-more-rightside {
	margin-left: 20px;
	}

	@media (max-width: 1200px) {
	.employee-more {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.employee-more-pic {
		width: 100%;
		height: auto;
	}

	.employee-more-rightside {
		margin-left: 5px;
	}

	.employee-more-desc {
		font-size: 16px;
	}

	.employee-more-cnt {
		justify-content: center;
		margin-top: 10px;
	}

	.employee-more-sub {
		font-size: 14px;
	}

	.employee-more-span {
		font-size: 13px;
	}

	.employee-more__desc {
		font-size: 15px;
	}

	.employee-more-text {
		font-size: 14px;
	}

	.employee-more__title {
		font-size: 20px;
	}

	.employee-more p {
		font-size: 12px;
	}

	.employee-more__content {
		justify-content: center;
	}
	}

	#map-sait .container {
	max-width: 1200px;
	}
	/* .map-sait {
	margin-top: 50px;
	} */
	.map-sait__title {
	/* margin-top: 50px; */
	margin-bottom: 40px;
	color: #fff;
	font-weight: 400;
	font-size: 36px;
	text-align: center;
	font-family: Roboto;
	}
	.map-sait-main-link {
	margin-top: 50px;
	width: 100%;
	display: flex;
	justify-content: center;
	}
	.map-sait__link {
	padding: 20px 44.5%;
	background: #1788b5;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
	font-family: Inter;
	text-transform: uppercase;
	border-radius: 3px;
	text-decoration: underline;
	box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	transition: 0.2s linear;
	}
	.map-sait__link:hover {
	background: #1841b3;
	}
	.map-sait__cards {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	.map-sait__card {
	margin-top: 20px;
	box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	background: #1788b5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	width: 143px;
	height: 240px;
	}

	.map-sait-wrap {
	text-align: center;
	margin-top: 10px;
	}

	.map-sait__card img {
	width: 54.25px;
	height: 54.25px;
	}
	.map-sait-link {
	margin-top: 7px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 26.6px;
	font-family: Inter;
	text-transform: uppercase;
	border-radius: 3px;
	text-decoration: underline;
	}

	.map-sait-cnt div {
	text-align: center;
	width: 111px;
	}

	.map-sait-other div {
	text-align: center;
	}

	.map-sait-wrapper {
	margin-bottom: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	}

	.map-sait-link-other {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	font-family: Inter;
	text-transform: uppercase;
	border-radius: 3px;
	text-decoration: underline;
	transition: 0.3s ease;
	}

	.map-sait-link-other:hover {
	text-decoration: none;
	}

	.map-sait__content {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 60px;
	}

	.map-sait-other {
	width: 175px;
	margin-top: 20px;
	box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	background: #1788b5;
	padding: 12px 15px;
	border-radius: 3px;
	transition: 0.3s linear;
	}

	.map-sait-other:hover {
	background: #1c5b93;
	}

	.map-sait-cnt {
	margin-top: 20px;
	box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.75);
	background: #1788b5;
	padding: 12px 15px;
	/* width: 150px; */
	border-radius: 3px;
	}

	.map-sait__wrapp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}

	.map-sait__cnt {
	margin-top: 60px;
	margin-bottom: 50px;
	}
	.map-sait__cnt a {
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.map-sait__cnt img {
	width: 140px;
	height: 141px;
	}
	.map-sait-subtitle {
	text-align: center;
	width: 330px;
	font-family: Arial;
	font-size: 28px;
	font-weight: 700;
	line-height: 31px;
	color: #fff;
	}
	@media (max-width: 1200px) {
	.map-sait {
		padding: 0 15px;
	}
	.map-sait__link {
		padding: 20px 43%;
	}
	}
	@media (max-width: 1200px) {
	.map-sait__link {
		padding: 20px 40%;
	}
	}
	@media (max-width: 610px) {
	.map-sait__link {
		padding: 20px 35%;
		font-size: 25px;
	}
	.map-sait-subtitle {
		font-size: 25px;
		width: 100%;
		margin-left: 10px;
	}
	.map-sait__cnt img {
		width: 100px;
		height: 100px;
	}
	.map-sait-link {
		font-size: 18px;
	}
	}
	@media (max-width: 455px) {
	.map-sait-subtitle {
		font-size: 20px;
	}
	}
	.faq__container {
	max-width: 1220px;
	margin: 0 auto;
	margin-bottom: 60px;
	}
	.faq {
	position: relative;
	background: #1788b5;
	padding: 20px;
	border-radius: 3px;
	margin-bottom: 20px;
	}
	.faq__content_question {
	cursor: pointer;
	color: #fff;
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 17px;
	width: 900px;
	}
	.faq__page-title {
	margin-top: 50px;
	margin-bottom: 50px;
	color: #fff;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}
	.faq__content_question::after {
	content: '+';
	position: absolute;
	top: 15px;
	right: 40px;
	font-size: 2.5rem;
	font-weight: 300;
	transform: rotate(-90deg);
	transition: all 0.3s 0s;
	}
	.faq-reveal::after {
	position: absolute;
	content: '';
	transform: rotate(0deg);
	background: #1788b5;
	width: 40px;
	height: 4px;
	transition: all 0.3s 0s;
	}
	.faq__answer {
	max-height: 0;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	color: #fff;
	transition: all 0.5s ease-in-out;
	}
	.faq-reveal .faq__answer {
	max-height: 1000px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	padding: 25px;
	box-sizing: border-box;
	transition: all 0.5s ease-in-out;
	}
	@media (max-width: 425px) {
	.faq__page-title {
		width: 500px;
		font-size: 18.5px;
	}
	}
	@media (max-width: 1220px) {
	.containerAnalogue {
		padding: 0 15px;
	}
	}

	@media (max-width: 1000px) {
	.faq__content_question {
		width: 100%;
	}
	}

	@media (max-width: 550px) {
	.faq__content_question {
		font-size: 13px;
	}
	}

	#result .container {
	max-width: 1200px;
	}
	.result {
	margin-top: 60px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	}
	.result__title {
	color: #fff;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}
	.result__cards {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}
	.result__card {
	flex-direction: column;
	width: 350px;
	}
	.result-pic {
	width: 350px !important;
	height: 200px !important;
	object-fit: cover;
	}
	.result__subtitle {
	margin-top: 20px;
	width: 100%;
	color: #1788b5 !important;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	font-family: Inter;
	text-align: justify;
	}
	.result-data {
	color: #1788b5;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	font-family: Inter;
	margin-right: 50px;
	}
	.result-cnt {
	margin-top: 30px;
	display: flex;
	}
	@media (max-width: 1200px) {
	.result {
		padding: 0 15px;
	}
	}
	@media (max-width: 530px) {
	.result__card {
		flex-direction: column;
		align-items: center;
	}
	.result__card {
		width: 100%;
	}

	.result-pic {
		height: auto !important;
		width: 100% !important;
	}

	.result__subtitle {
		margin-top: 30px;
	}
	}

	.resolution__inner a {
	color: #002191;
	font-size: 14px;
	font-weight: 600;
	font-family: Open Sans;
	padding: 10px;
	transition: 0.3s linear;
	}

	.resolution__inner a:hover {
	color: #0e3188;
	}

	.resolution__inner {
	color: #1788b5;
	font-size: 15px;
	font-weight: 600;
	font-family: Open Sans;
	padding: 10px;
	text-align: center;
	}

	.resolution__subject {
	color: #1788b5;
	font-size: 15px;
	font-weight: 900;
	font-family: Open Sans;
	padding: 10px;
	border: 1px solid #acacac;
	}

	.object__title {
	font-size: 20px !important;
	color: #1788b5;
	font-family: Open Sans;
	}

	.object__descr {
	font-size: 16px;
	color: #1788b5;
	font-family: Open Sans;
	font-weight: 500;
	margin-bottom: 10px;
	}

	@media (max-width: 1440px) {
	.resolution {
		width: 100%;
	}
	}

	@media (max-width: 1024px) {
	.resolution__wrapper {
		overflow-x: auto;
		white-space: nowrap;
	}
	}

	@media (max-width: 550px) {
	.resolution__subject {
		font-size: 14px;
	}

	.resolution__inner {
		font-size: 13px;
	}

	.resolution__inner a {
		font-size: 12px;
	}
	}

	.news {
	margin-top: 60px;
	}

	.news__cards {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	.news__subtitle {
	margin-top: 20px;
	color: #2f4097;
	font-weight: 700;
	font-size: 17px;
	line-height: 27px;
	font-family: Inter;
	width: 400px;
	text-align: justify;
	}

	.news__desc {
	margin-bottom: 20px;
	margin-top: 20px;
	color: #454545;
	font-weight: 500;
	font-size: 16px;
	font-family: Inter;
	width: 400px;
	text-align: justify;
	}

	.news__desc {
	margin-top: 20px;
	}

	.news-time {
	color: #454545;
	font-weight: 700;
	font-size: 14px;
	font-family: Inter;
	}

	.news-viewing {
	margin-left: 10px;
	color: #454545;
	font-weight: 700;
	font-size: 14px;
	font-family: Inter;
	}

	.last-news-pic {
	width: 400px;
	height: 250px;
	object-fit: cover;
	}

	@media (max-width: 1440px) {
	.news {
		padding: 0 15px;
	}
	}

	@media (max-width: 860px) {
	.news__cards {
		justify-content: center;
	}

	.last-news-pic {
		width: 100%;
		height: auto;
	}

	.news__desc {
		width: 100%;
	}

	.news__subtitle {
		width: 100%;
	}
	}

	@media (max-width: 550px) {
	.news__subtitle {
		font-size: 13px;
		line-height: 20px;
	}

	.news__desc {
		font-size: 12px;
	}

	.news-time {
		font-size: 12px;
	}
	}

	.last-document {
	margin-top: 60px;
	}
	.last-document__title {
	position: relative;
	color: #fff;
	font-family: Inter;
	font-size: 30px;
	font-weight: 800;
	line-height: 44px;
	text-align: center;
	}

	.last-document__cards {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	}
	.last-document__card {
	display: flex;
	position: relative;
	width: 100%;
	padding: 20px;
	margin-top: 20px;
	background: #666664;
	border: 1px solid #fff;
	transition: 0.3s linear;
	}

	.last-document__card:hover {
	background: #1e77b2;
	}

	.last-document__subtitle {
	width: 794px;
	margin-left: 20px;
	position: relative;
	color: #fff;
	font-family: Inter;
	font-weight: 300;
	font-size: 16px;
	line-height: 28px;
	}
	.last-document-cnt {
	margin-top: 30px;
	display: flex;
	}

	.last-document__subject {
	margin-left: 45px;
	position: relative;
	color: #d1c7c7;
	font-family: Poppins;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	}

	@media (max-width: 1440px) {
	.last-document {
		padding: 0 15px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.last-document__title::before {
		width: 50% !important;
		left: -12rem;
	}

	.last-document__title::after {
		width: 50% !important;
		left: 23rem;
	}

	.last-document__subtitle {
		width: 100%;
	}
	}

	@media (max-width: 855px) {
	.last-document__title {
		font-size: 25px;
	}

	.last-document__title::before {
		width: 50% !important;
		left: -10rem;
	}

	.last-document__title::after {
		width: 50% !important;
		left: 19rem;
	}

	.last-document__subtitle {
		font-size: 14px;
	}

	.last-document__card {
		align-items: center;
	}

	.last-document-data {
		font-size: 11px;
	}

	.last-document-time {
		font-size: 11px;
	}

	.last-document-data::after {
		width: 15px;
	}

	.fa-file-word {
		font-size: 40px;
	}
	}

	@media (max-width: 635px) {
	.last-document__title {
		width: 250px;
		line-height: 28px;
	}

	.last-document__title::before {
		left: -3rem;
		width: 35% !important;
	}

	.last-document__title::after {
		width: 35% !important;
		left: 13rem;
	}
	}

	.article-more__title {
	color: #1788b5;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	}
	.article-more__content {
	display: flex;
	margin-top: 50px;
	margin-bottom: 20px;
	}
	.article-more__subtitle {
	width: 100%;
	text-align: justify;
	margin-top: 20px;
	color: #252525;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	}
	.article-more__text {
	width: 100%;
	text-align: justify;
	margin-top: 15px;
	color: #454545;
	font-family: Roboto;
	font-size: 16px;
	font-weight: 500;
	}

	.article-more__text p {
	margin-top: 20px;
	margin-bottom: 30px;
	}

	.article-more__cnt {
	display: flex;
	align-items: center;
	margin-left: 20px;
	}
	.article-more__views {
	display: flex;
	align-items: center;
	color: #454545;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	margin-left: 3px;
	}
	.article-more__views-date {
	display: flex;
	align-items: center;
	color: #454545;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	}

	.article-more__image {
	width: 100%;
	height: 495px;
	-o-object-fit: cover;
	object-fit: cover;
	}
	@media (max-width: 1200px) {
	.article-more {
		padding: 0 15px;
	}
	}
	@media (max-width: 1024px) {
	.article-more {
		align-items: center;
	}
	}
	@media (max-width: 1024px) {
	.article-more {
		align-items: center;
	}
	.article-more__image {
		height: 350px;
	}
	}
	@media (max-width: 500px) {
	.article-more__image {
		height: 250px;
	}

	.article-more__text {
		font-size: 13px;
	}
	}
