	#top-bar {
	background: #11316e;
	padding-top: 20px;
	padding-bottom: 20px;
	}
	#top-bar #clock {
	background: #3460b0;
	padding: 5px 10px;
	color: #fff;
	font-family: Work Sans;
	font-size: 16px;
	font-weight: bold;
	}
	.top-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	.top-bar__applications {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	}
	.top-bar__app {
	padding: 0 10px;
	}
	.top-bar-pic {
	width: 30px;
	height: 30px;
	-o-object-fit: cover;
	object-fit: cover;
	}
	.top-bar__pic {
	width: 30px;
	height: 20px;
	-o-object-fit: cover;
	object-fit: cover;
	}
    
	@media (max-width: 1350px) {
	.top-bar {
		padding: 0 15px;
	}
	}

	.header-banner {
	position: relative;
	height: 150px;
	background-image: url('../img/header/bg.webp');
	background-size: cover;
	background-position: center;
	}
	.header-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 49, 110, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.header-banner .content {
	display: flex;
	align-items: center;
	max-width: 1350px;
	}
	.header-banner .logo {
	display: block;
	max-width: 100%;
	height: auto;
	transform: translateX(-30px);
	}
	.header__title {
	font-family: Inter;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	}

	@media (max-width: 1350px) {
	.content {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.header__title {
		font-size: 12px;
	}

	.header-banner .logo {
		width: 130px;
		transform: translateX(0);
	}
	}

	@media (max-width: 450px) {
	.header__title {
		font-size: 11px;
	}

	.header-banner .logo {
		width: 100px;
	}

	#top-bar #clock {
		font-size: 13px;
	}

	.top-bar-pic {
		width: 25px;
		height: 25px;
	}
	}

	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
	.container {
	max-width: 1350px;
	margin: 0 auto;
	}

	a {
	text-decoration: none;
	}

	ul,
	li {
	list-style: none;
	}

	button {
	border: none;
	}

	.fa-eye {
	margin-right: 10px;
	}

	.main-nav {
	background-color: #11316e;
	color: white;
	box-shadow: -2px -1px 11px 0px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: -2px -1px 11px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -2px -1px 11px 0px rgba(0, 0, 0, 0.75);
	padding-top: 20px;
	position: relative;
	z-index: 1000;
	}

	.nav-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	}

	.nav {
	flex-grow: 1;
	}

	.menu,
	.extra {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
	}

	.menu li,
	.extra li {
	position: relative;
	}

	.menu a,
	.extra a {
	color: white;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	padding: 6px 10px;
	text-transform: uppercase;
	transition: background 0.3s ease, color 0.3s ease;
	}

	.menu a:hover,
	.extra a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	}

	.submenu {
	position: absolute;
	top: 110%;
	left: 0;
	background-color: #1c3d85;
	list-style: none;
	padding: 10px 0;
	min-width: 160px;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	}

	.has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	}

	.submenu li a {
	display: block;
	/* padding: 8px 16px; */
	color: white;
	font-size: 13px;
	transition: background 0.3s ease;
	}

	.submenu li a:hover {
	background-color: rgba(255, 255, 255, 0.15);
	}

	.icon {
	font-size: 16px;
	}

	/* Адаптивность */
	@media (max-width: 768px) {
	.burger {
		display: flex !important;
	}

	.nav-container {
		padding-bottom: 15px;
	}

	.nav {
		width: 100%;
		display: none;
		flex-direction: column;
		animation: fadeIn 0.3s ease forwards;
	}

	.nav.open {
		display: flex;
	}

	.menu,
	.extra {
		flex-direction: column;
		align-items: flex-start;
	}

	.submenu {
		position: static;
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background: transparent;
		border-radius: 0;
		padding-top: 20px;
	}

	.has-submenu:hover .submenu {
		opacity: 1;
		visibility: visible;
	}
	}



	@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
	}


	.main-nav .search-container {
	position: relative;
	}
	.main-nav .search-icon {
	width: 25px;
	height: 25px;
	background: url('../img/header/search.png') center/contain no-repeat;
	cursor: pointer;
	}
	.main-nav .search-input {
	display: none;
	position: absolute;
	top: 50px;
	right: 0;
	width: 200px;
	padding: 8px;
	border: 1px solid #aaa;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	}
	.main-nav .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);
	}
	}

	.nav-pic option {
	opacity: 0.7;
	}

	.news {
	margin-top: 60px;
	}

	.ticker-wrapper {
	overflow: hidden;
	background-color: #e9e9e9;
	height: 40px;
	position: relative;
	}

	.ticker {
	display: flex;
	animation: scroll-left 30s linear infinite;
	}

	.ticker-item {
	white-space: nowrap;
	color: #000;
	font-family: Montserrat;
	padding: 5px 10px;
	font-weight: bold;
	line-height: 40px;
	text-transform: uppercase;
	font-size: 14px;
	}

	@keyframes scroll-left {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
	}

	.news__content {
	display: flex;
	align-items: center;
	}

	.news__title {
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	background: #11316e;
	white-space: nowrap;
	padding: 5px 10px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	}

	.news__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 50px;
	}

	.news-content {
	position: relative;
	}

	.news-picture {
	width: 600px;
	height: 418px;
	object-fit: cover;
	filter: brightness(60%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	}

	.news-elements {
	position: absolute;
	top: 70%;
	left: 5%;
	transform: translateY(-50%);
	color: white;
	z-index: 1;
	text-align: left;
	/* max-width: 500px; */
	}

	.news__subtitle {
	font-family: Open Sans;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
	}

	.news-data {
	margin-top: 20px;
	}

	.news-date {
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	}

	.news__date {
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	margin-left: 30px;
	}

	.news__card {
	position: relative;
	}

	.news-img {
	width: 320px;
	height: 208px;
	object-fit: cover;
	filter: brightness(80%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	}

	.news__elements {
	position: absolute;
	top: 60%;
	left: 5%;
	transform: translateY(-50%);
	color: white;
	z-index: 1;
	text-align: left;
	/* max-width: 500px; */
	}

	.news__sub {
	font-family: Open Sans;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 900;
	}

	.news-more-date {
	font-family: Open Sans;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	}

	.news-more__date {
	font-family: Open Sans;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	margin-left: 30px;
	}

	@media (max-width: 1350px) {
	.news {
		padding: 0 15px;
	}

	.news-elements {
		top: 36%;
	}
	}

	@media (max-width: 1000px) {
	.news__wrapper {
		flex-direction: column;
	}

	.news-picture {
		width: 100%;
		height: auto;
	}

	.news-elements {
		top: 80%;
	}
	}

	@media (max-width: 768px) {
	.news__title {
		font-size: 16px;
	}
	}

	@media (max-width: 550px) {
	.news-elements {
		top: 65%;
	}

	.news__subtitle {
		font-size: 13px;
	}

	.news-date {
		font-size: 11px;
	}

	.news__date {
		font-size: 11px;
	}
	}

	.updates {
	margin-top: 60px;
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

	.updates__cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
	}

	.updates__card a {
	/* width: 830px; */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	display: flex;
	}

	.updates-img {
	width: 500px;
	height: 280px;
	object-fit: cover;
	}

	.updates__title {
	font-family: Montserrat;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
	}

	.updates__cnt {
	margin-top: 20px;
	}

	.updates-content {
	margin-left: 20px;
	width: 100%;
	}

	.updates__date {
	color: #000;
	font-family: Montserrat;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	}

	.updates__view {
	color: #000;
	font-family: Montserrat;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: 20px;
	}

	.updates__text {
	color: #000;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 400;
	margin-top: 20px;
	}

	@media (max-width: 1350px) {
	.updates {
		padding: 0 15px;
	}
	}

	@media (max-width: 950px) {
	.updates-img {
		width: 100%;
		height: auto;
	}
	}

	@media (max-width: 768px) {
	.updates__card a {
		flex-direction: column;
		gap: 30px;
	}

	.updates-content {
		margin-left: 0;
	}

	.updates__title {
		font-size: 14px;
	}

	.updates__text {
		font-size: 12px;
	}

	.updates__date {
		font-size: 11px;
	}

	.updates__view {
		font-size: 11px;
	}

	.news-item p {
		font-size: 12px !important;
	}

	.news-item-data {
		font-size: 11px;
	}
	}

	.vacancy {
	margin-top: 60px;
	}

	.vacancy__title {
	position: relative;
	font-family: Montserrat;
	color: #11316e;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	}

	.vacancy__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.vacancy__cards {
	margin-top: 60px;
	}

	.vacancy__card {
	background: #11316e;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 1142px;
	padding: 50px 0;
	}

	.vacancy__content {
	display: flex;
	align-items: center;
	}

	.vacancy-pic {
	width: 62px;
	height: 62px;
	}

	.vacancy-text {
	font-family: Montserrat;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	/* width: 416px; */
	}

	.vacancy-data {
	margin-top: 60px;
	}

	.vacancy__date {
	font-family: Open Sans;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	}

	.vacancy-view {
	font-family: Open Sans;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 50px;
	}

	@media (max-width: 1350px) {
	.vacancy {
		padding: 0 15px;
	}
	}

	@media (max-width: 1350px) {
	.vacancy__card {
		width: 100%;
	}
	}

	@media (max-width: 768px) {
	.vacancy-text {
		font-size: 15px;
		width: 100%;
	}

	.vacancy__date {
		font-size: 12px;
	}

	.vacancy-view {
		font-size: 12px;
	}
	}

	.events {
	margin-top: 80px;
	}

	.events__title {
	position: relative;
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #11316e;
	}

	.events__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.events__cards {
	margin-top: 80px;
	}

	.events__pic {
	width: 480px;
	height: 200px;
	object-fit: cover;
	border-radius: 5px 5px 0 0;
	filter: brightness(80%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	}

	.events__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	.events__text {
	color: #fff;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	}

	.events__content {
	background: #11316e;
	width: 480px;
	border-radius: 0 0 5px 5px;
	margin-top: -5px;
	padding: 25px 10px;
	}

	.events__data {
	margin-top: 50px;
	}

	.events__date {
	color: #fff;
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	}

	.events__view {
	color: #fff;
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	float: right;
	}

	.events__button {
	text-align: center;
	margin-top: 20px;
	}

	.events__button a {
	display: inline-block;
	text-align: center;
	color: #fff;
	font-family: Open Sans;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	background: #2e5aab;
	padding: 8px 30px;
	transition: 0.3s ease;
	}

	.events__button a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	}

	@media (max-width: 1350px) {
	.events {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.events__title {
		font-size: 20px;
	}
	}

	@media (max-width: 1010px) {
	.events__cards {
		justify-content: center;
	}
	}

	@media (max-width: 550px) {
	.events__pic {
		width: 100%;
		height: auto;
	}

	.events__content {
		width: 100%;
	}

	.events__text {
		font-size: 14px;
	}

	.events__date {
		font-size: 12px;
	}

	.events__view {
		font-size: 12px;
	}

	.events__button a {
		font-size: 14px;
	}
	}

	.project {
	margin-top: 80px;
	}

	.project__data {
	margin-top: 50px;
	}

	.project__date {
	color: #11316e;
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	}

	.project__view {
	color: #11316e;
	font-family: Open Sans;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	float: right;
	}

	.project__title {
	position: relative;
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #11316e;
	}

	.project__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.project__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 60px;
	}

	.project__card {
	width: 775px;
	border: 1px solid #11316e;
	border-radius: 5px;
	padding: 30px 20px;
	}

	.project-cnt {
	display: flex;
	align-items: center;
	}

	.project-text {
	font-family: Montserrat;
	font-size: 15px;
	color: #11316e;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 10px;
	}

	@media (max-width: 1350px) {
	.project {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.project__title {
		font-size: 20px;
	}

	.project__title::before {
		top: 55px;
	}
	}

	@media (max-width: 850px) {
	.project__card {
		width: 100%;
	}
	}

	@media (max-width: 768px) {
	.project-text {
		font-size: 14px;
	}

	.project__date {
		font-size: 12px;
	}

	.project__view {
		font-size: 12px;
	}
	}

	.last-document {
	margin-top: 80px;
	}

	.last-document__title {
	position: relative;
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #11316e;
	}

	.last-document__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.last-document__cards {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	.last-document__card {
	background: #11316e;
	border: 1px solid #dfdfdf;
	width: 500px;
	padding: 30px 20px;
	}

	.last-document__subtitle {
	font-family: Roboto;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 40px;
	}

	.last-document__desc {
	font-family: Open Sans;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	display: block;
	margin-top: 30px;
	}

	.last-document__button {
	margin-top: 25px;
	}

	.last-document__button a {
	font-family: Open Sans;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	background: #4065a8;
	padding: 7px 20px;
	border-radius: 50px;
	transition: 0.3s ease;
	}

	.last-document__button a:hover {
	background-color: rgba(0, 85, 170, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	}

	@media (max-width: 1350px) {
	.last-document {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.last-document__title {
		font-size: 20px;
	}
	}

	@media (max-width: 600px) {
	.last-document__card {
		width: 100%;
	}

	.last-document__subtitle {
		font-size: 14px;
	}

	.last-document__desc {
		font-size: 12px;
	}
	}

	.slider-container {
	padding-top: 80px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	}

	.slider-track {
	display: flex;
	transition: transform 0.6s ease;
	gap: 20px;
	margin-top: 50px;
	}

	.card {
	position: relative;
	width: 350px;
	height: 430px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	flex-shrink: 0;
	}

	.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(50%);
	transition: filter 0.4s ease;
	}

	.card:hover img {
	filter: brightness(70%);
	}

	.card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
	pointer-events: none;
	z-index: 1;
	}

	.card-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #fff;
	text-align: center;
	width: 90%;
	}

	.card-content .btn {
	padding: 10px 60px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	color: #fff;
	font-family: Open Sans;
	border: 1px solid #fff;
	border-radius: 20px;
	font-size: 18px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
	display: inline-block;
	margin-top: 15px;
	}

	.card-content .btn:hover {
	background-color: rgba(255, 255, 255, 0.4);
	}

	@media (max-width: 1200px) {
	.slider-container {
		padding: 80px 15px;
	}
	}

	@media (max-width: 768px) {
	.portfolio__title {
		font-size: 20px !important;
	}

	.portfolio__subtitle {
		font-size: 16px !important;
	}

	.portfolio__subtitle span {
		font-size: 18px !important;
	}

	.card-content .btn {
		font-size: 15px;
		padding: 10px 50px;
	}

	.portfolio__text {
		font-size: 15px !important;
	}
	}

	.portfolio__text {
	margin-top: 20px;
	font-family: Oswald;
	font-size: 20px;
	color: #11316e;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	}

	.dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding: 10px;
	}

	.dot {
	width: 15px;
	height: 15px;
	margin: 0 6px;
	background: #898989;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
	box-sizing: border-box;
	}

	.dot.active {
	outline: 2px solid #898989;
	outline-offset: 3px;
	}

	.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
	transition: background 0.3s ease;
	}

	.arrow:hover {
	background: rgba(0, 0, 0, 0.6);
	}

	.arrow.left {
	left: 10px;
	}

	.arrow.right {
	right: 10px;
	}

	.portfolio__title {
	position: relative;
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #11316e;
	}

	.portfolio__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.portfolio__subtitle {
	margin-top: 30px;
	font-family: Roboto Slab;
	font-size: 20px;
	font-weight: 500;
	color: #000;
	text-transform: uppercase;
	}

	.portfolio__subtitle span {
	font-family: Roboto Slab;
	font-size: 22px;
	font-weight: 700;
	color: #11316e;
	text-transform: uppercase;
	}

	.item {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	}

	.item__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	}

	.item__title {
	color: #2c3994;
	font-family: Montserrat;
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 900;
	}

	.item-desc {
	color: #5a5a5a;
	font-family: Open Sans;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin-top: 7px;
	}

	@media (max-width: 1350px) {
	.item {
		padding: 0 15px;
		margin-top: 0;
	}
	}

	@media (max-width: 860px) {
	.item__title {
		font-size: 28px;
	}

	.item-desc {
		font-size: 14px;
	}
	}

	@media (max-width: 860px) {
	.item {
		gap: 50px;
	}

	.item__title {
		font-size: 20px;
	}

	.item-desc {
		font-size: 12px;
	}
	}

	.state {
	margin-top: 100px;
	}

	.state__cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 80px;
	margin-top: 60px;
	}

	.state__title {
	position: relative;
	font-family: Montserrat;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: bold;
	color: #11316e;
	text-align: center;
	}

	.state__title::before {
	content: '';
	position: absolute;
	width: 93px;
	height: 3px;
	border-radius: 5px;
	background: #11316e;
	top: 40px;
	}

	.state__desc.last::before {
	top: 96px;
	}

	.state__desc {
	width: 300px;
	position: relative;
	font-family: Montserrat;
	font-size: 16px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	}

	.state__desc::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #333;
	border-radius: 5px;
	top: 64px;
	}

	.state__button {
	margin-top: 30px;
	}

	.state__button a {
	color: #11316e;
	font-family: Open Sans;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	transition: 0.3s ease;
	}

	.state__button a:hover {
	color: #2a55a7;
	}

	.state-link-img {
	width: 30px;
	height: 12px;
	object-fit: cover;
	float: right;
	}

	@media (max-width: 1350px) {
	.state {
		padding: 0 15px;
	}
	}

	@media (max-width: 768px) {
	.state__title {
		font-size: 20px;
	}

	.state__title::before {
		top: 60px;
		left: 10rem;
	}

	.state__cards {
		justify-content: center;
	}

	.state__desc {
		font-size: 14px;
	}
	}

	#footer {
	margin-top: 80px;
	padding-top: 30px;
	background: #11316e;
	padding-bottom: 30px;
	}

	.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
	}

	.footer__wrapper a {
	display: flex;
	align-items: center;
	width: 800px;
	}

	.footer-wrapper {
	position: relative;
	}

	.footer-wrapper::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 105px;
	border-radius: 5px;
	background: #fff;
	left: -30px;
	}

	.footer-logo {
	width: 101px;
	height: 71px;
	object-fit: cover;
	}

	.footer__title {
	font-family: Open Sans;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	}

	.footer__subtitle {
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-weight: 600;
	}

	.footer__applications {
	display: flex;
	align-items: center;
	margin-top: 30px;
	}

	.footer-app {
	padding: 0 20px 0 0;
	}

	.footer-img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	}

	.footer__column {
	padding-top: 70px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
	}

	.footer__wrap ul li {
	width: 265px;
	padding-top: 20px;
	}

	.footer__wrap ul li a {
	font-family: Open Sans;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	transition: 0.3s linear;
	}

	.footer__wrap ul li a:hover {
	color: #bebbbb;
	}

	.footer__slogan {
	font-family: Open Sans;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	}

	.footer-wrap ul li {
	width: 235px;
	padding-top: 20px;
	}

	.footer-wrap ul li a {
	font-family: Oswald;
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	transition: 0.2s linear;
	}

	.footer-wrap ul li a:hover {
	color: #d1d1d1;
	padding-left: 10px;
	}

	.footer-copyright {
	position: relative;
	margin-top: 100px;
	text-align: center;
	color: #fff;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	}

	.footer-copyright::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	border-radius: 5px;
	background: #fff;
	left: 0;
	top: -15px;
	}

	@media (max-width: 1350px) {
	.footer {
		padding: 50px 15px;
	}

	.footer__wrapper a {
		width: 100%;
	}

	.footer__content {
		justify-content: center;
	}

	.footer__wrap ul li {
		width: 100%;
	}

	.footer-wrap ul li {
		width: 100%;
	}
	}

	@media (max-width: 600px) {
	.footer__title {
		font-size: 10px;
	}
	}

	@media (max-width: 500px) {
	.footer__column {
		flex-direction: column;
	}

	.footer__subtitle {
		font-size: 14px;
	}

	.footer__wrap ul li a {
		font-size: 14px;
	}

	.footer-wrap ul li a {
		font-size: 14px;
	}

	.footer-copyright {
		font-size: 12px;
	}
	}

	.tabs {
	margin-top: 50px;
	background-color: #11316e;
	}

	.tab-button {
	padding: 12px 16px;
	text-align: center;
	background-color: #11316e;
	color: white;
	font-family: Montserrat;
	font-size: 13px;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: bold;
	white-space: nowrap;
	border-right: 1px solid #fff;
	}

	.tab-button.active {
	background-color: #17459c;
	}

	.tab-content {
	display: none;
	padding: 10px;
	border: 1px solid #ccc;
	}

	.tab-content.active {
	display: block;
	}

	.news-item {
	margin-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 20px;
	}

	.news-item p {
	font-family: Open Sans;
	font-size: 14px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	}

	.news-item-data {
	font-family: Open Sans;
	font-size: 13px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	}

	.news-item-view {
	margin-left: 60px;
	font-family: Open Sans;
	font-size: 13px;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	}

	/*  */
	@media (max-width: 768px) {
	.nav {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: rgba(17, 49, 110, 0.7); /* полупрозрачный синий */
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		display: none;
		flex-direction: column;
		padding: 20px;
		animation: fadeIn 0.3s ease forwards;
		border-radius: 0 0 12px 12px;
	}

	.nav.open {
		display: flex;
	}

	.burger {
		width: 30px;
		height: 25px;
		padding: 0 15px;
		position: relative;
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 1000;
	}

	.burger span {
		position: relative;
		z-index: 1000;
		display: block;
		height: 3px;
		background: #fff;
		border-radius: 3px;
		transition: all 0.4s ease;
	}

	.burger.open span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.burger.open span:nth-child(2) {
		opacity: 0;
	}

	.burger.open span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.main-nav .search-input {
		left: 0;
	}
	}

	.breadcrumbs-more {
	position: relative;
	display: flex;
	margin: 50px 0 0 80px;
	}
	.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: #11316e;
	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: #a3a3a3;
	margin-top: 4px;
	}
	@media (max-width: 1400px) {
	.breadcrumbs {
		margin: 50px 0 0 40px !important;
	}
	}
	@media (max-width: 430px) {
	.breadcrumbs {
		margin: 50px 0 0 30px !important;
	}
	.breadcrumb__item {
		font-size: 15px !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: #11316e;
	border: 1px solid #11316e;
	padding: 10px;
	border-radius: 2px;
	transition: 0.3s ease;
	}

	.navigation a:hover {
	background: #4674cf;
	color: #fff;
	}

	.navigation span {
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 21.78px;
	text-align: left;
	color: #11316e;
	border: 1px solid #11316e;
	padding: 10px;
	transition: 0.3s ease;
	}

	.navigation span:hover {
	background: #4579cd;
	color: #fff;
	}

	.section-title {
	margin-top: 50px;
	margin-bottom: 60px;
	color: #11316e;
	font-weight: 400;
	font-size: 36px;
	text-align: center;
	font-family: Roboto;
	}

	@media (max-width: 1385px) {
	.pages {
		padding: 0 10px;
	}
	}

	@media (max-width: 768px) {
	.section-title {
		font-size: 26px;
	}
	}

	@media (max-width: 742px) {
	.content-gallery {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	}

	.pages-text {
	margin-top: 50px;
	margin-bottom: 60px;
	color: #11316e;
	font-weight: 400;
	font-size: 20px;
	text-align: justify;
	font-family: Open Sans;
	}

	.popup {
	padding: 10px;
	}

	.popup-image {
	width: 350px;
	height: 300px;
	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: #11316e;
	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: 253px;
	height: 248px;
	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: #fff;
	font-size: 14px;
	font-family: Inter;
	font-weight: 700;
	line-height: 20px;
	}

	@media (max-width: 1200px) {
	.employees {
		padding: 0 15px;
	}
	}

	@media (max-width: 535px) {
	.employees__title {
		font-size: 22px;
	}

	.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 #11316e;
	margin-top: 50px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 5px;
	}

	.employee-more__title {
	color: #11316e;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}

	.employee-more__desc {
	margin-top: 20px;
	color: #11316e;
	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: #11316e;
	font-family: Roboto;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}

	.employee-more-text {
	margin-top: 10px;
	color: #11316e;
	font-family: Inter;
	font-size: 20px;
	font-weight: 400;
	line-height: 40px;
	}

	.employee-more-sub {
	color: #252525;
	font-family: Inter;
	font-size: 22px;
	font-weight: 500;
	line-height: 20px;
	}

	.employee-more-span {
	margin-left: 10px;
	color: #57595a;
	font-family: Inter;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	}

	.employee-more-cnt {
	display: flex;
	margin-top: 20px;
	}

	.employee-more strong {
	font-size: 15px;
	color: #11316e;
	font-family: Open Sans;
	font-weight: bold;
	text-transform: uppercase;
	}

	.employee-more p {
	font-size: 14px;
	color: #252525;
	font-family: Open Sans;
	font-weight: 500;
	padding-top: 20px;
	}

	.employee-more-rightside {
	margin-left: 20px;
	}

	@media (max-width: 1200px) {
	.employee-more {
		padding: 0 15px;
	}
	}

	@media (max-width: 675px) {
	.employee-more-pic {
		width: 200px;
		height: 180px;
	}

	.employee-more-rightside {
		margin-left: 5px;
	}

	.employee-more-desc {
		font-size: 16px;
	}

	.employee-more-sub {
		font-size: 14px;
	}

	.employee-more-span {
		font-size: 13px;
	}

	.employee-more__desc {
		font-size: 17px;
	}

	.employee-more-text {
		font-size: 16px;
	}

	.employee-more__title {
		font-size: 22px;
	}
	}

	@media (max-width: 485px) {
	.employee-more__content {
		justify-content: center;
	}
	}

	#map-sait .container {
	max-width: 1200px;
	}
	.map-sait {
	margin-top: 60px;
	}
	.map-sait__title {
	margin-top: 50px;
	margin-bottom: 60px;
	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: #11316e;
	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: #8d92a0;
	}
	.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: #11316e;
	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__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: #11316e;
	padding: 12px 15px;
	border-radius: 3px;
	transition: 0.3s linear;
	}

	.map-sait-other:hover {
	background: #989a9f;
	}

	.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: #11316e;
	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: #11316e;
	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: #11316e;
	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%;
	}
	}

	#result .container {
	max-width: 1200px;
	}
	.result {
	margin-top: 60px;
	margin-bottom: 60px;
	}
	.result__title {
	color: #11316e;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}
	.result__cards {
	margin-top: 30px;
	}
	.result__card {
	display: flex;
	margin-top: 20px;
	}
	.result-pic {
	width: 350px;
	height: 200px;
	object-fit: cover;
	}
	.result__content {
	margin-left: 20px;
	}
	.result__subtitle {
	margin-top: 20px;
	width: 100%;
	color: #11316e;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	font-family: Inter;
	text-align: justify;
	}
	.result-data {
	color: #11316e;
	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-pic {
		width: 100%;
		height: 250px;
	}
	.result__subtitle {
		margin-top: 30px;
	}
	.result__content {
		margin-left: 0;
	}
	}

	.news {
	margin-top: 60px;
	margin-bottom: 60px;
	}

	.news__cards {
	/* margin-top: 50px; */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	}

	/* .news__subtitle {
	margin-top: 20px;
	color: #11316e;
	font-weight: 700;
	font-size: 16px;
	line-height: 27px;
	font-family: Inter;
	width: 400px;
	}

	.news__desc {
	margin-bottom: 20px;
	margin-top: 20px;
	color: #454545;
	font-weight: 500;
	font-size: 15px;
	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: 200px;
	object-fit: cover;
	}

	@media (max-width: 1440px) {
	.news {
		padding: 0 15px;
	}
	}

	@media (max-width: 860px) {
	.news__cards {
		justify-content: center;
	}
	}

	@media (max-width: 500px) {
	.news__subtitle {
		width: 100%;
		font-size: 17px;
	}

	.news__desc {
		width: 100%;
		font-size: 15px;
	}
	}

	#news-more .container {
	max-width: 1200px;
	}
	.news-more {
	margin-top: 100px;
	}
	.news-more__title {
	color: #1b1b1b;
	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: #252525;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	}
	.news-more__text p {
	width: 100%;
	text-align: justify;
	margin-top: 15px;
	color: #1b1b1b;
	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: #5A2C0A;
	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: #5A2C0A;
	font-family: Inter;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	}
	.news-more__image {
	width: 100%;
	height: 495px;
	-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;
	}
	
	.news-more__image {
		height: 350px;
	}
	}

	@media (max-width: 768px) {
	.news-more__title {
		font-size: 16px;
	}

	.news-more__views-date {
		font-size: 13px;	
	}

	.news-more__views {
		font-size: 13px;
	}
}
	@media (max-width: 500px) {
	.news-more__image {
		height: 250px;
	}
	}

	.article-more {
	margin-top: 100px;
	}
	.article-more__title {
	color: #11316e;
	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: #11316e;
	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;
	}

	.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;
	}
	}

	#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: #11316e;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	}
	.about__subtitle {
	color: #11316e;
	text-align: justify;
	font-family: Inter;
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	}
	.about__text {
	color: #11316e;
	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: #11316e;
	margin-top: 40px;
	transition: 0.3s linear;
	}

	.article__card:hover {
	background: #308fbb;
	}

	.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;
	}
	.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: 30px;
	}
	.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: #11316e;
	font-family: Inter;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	border: 1px solid #11316e;
	padding: 10px 30px;
	border-radius: 10px;
	transition: 0.3s linear;
	}
	.article-btn:hover {
	background: #454545;
	color: #fff;
	}
	.article__title {
	color: #11316e;
	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;
	}
	}
	@media (max-width: 500px) {
	.article__card {
		width: 330px;
	}
	.article-pic {
		width: 330px;
	}
	.article__subtitle {
		font-size: 17px;
		width: 100%;
	}
	.article__desc {
		font-size: 14px;
		width: 100%;
	}
	.article-time {
		font-size: 12px;
	}
	.article-viewing {
		font-size: 12px;
	}
	.article-btn {
		font-size: 16px;
	}
	}

	#info .container {
	max-width: 1200px;
	}

	.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: #11316e;
	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: #74777c;
	}

	.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: 22px;
	}
	}

	@media (max-width: 415px) {
	.info__card {
		width: 375px;
	}

	.info-img {
		width: 375px;
	}

	.info-text {
		width: 375px;
		font-size: 15px;
	}
	}

	.container .internet_reception {
	max-width: 1340px;
	}

	.internet_reception__contact {
	width: 750px;
	height: 55px;
	background: #11316e;
	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 #11316e;
	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: #11316e;
	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: #11316e;
	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;
	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%;
	}
	}

	#resolution .container {
	max-width: 1200px;
	}
	.resolution {
	margin-top: 60px;
	}

	.resolution__inner a {
	color: #0b35c2;
    font-size: 14px;
    font-weight: 600;
    font-family: Open Sans;
	}

	.resolution__wrapper {
	margin-top: 50px;
	margin-bottom: 50px;
	}
	.resolution__title {
	color: #1b1b1b;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	}
	.resolution__subject {
	color: #000;
	font-family: inter;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	}
	.resolution__sub {
	color: #959595;
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 19.36px;
	}
	.resolution__sub:hover {
	color: #304e4e;
	transition: all 0.2s ease;
	}
	.resolution__inner {
	color: #959595;
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 19.36px;
	text-align: center;
	}
	.resolution__btn {
	display: inline-block;
	padding: 15px 45px;
	margin-top: 100px;
	border: none;
	color: var(--white, #fff);
	text-align: center;
	font-family: Roboto;
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	flex-shrink: 0;
	border-radius: 6px;
	background: var(--light-blue, #0039a6);
	}
	.resolution__btn:hover {
	cursor: pointer;
	background: #fff;
	border: 2px dashed #1600b9;
	color: #1600b9;
	transition: 0.5s ease;
	transform: scale(1.1);
	}
	@media (max-width: 1400px) {
	.resolution {
		padding: 0 15px;
	}
	.resolution__wrapper {
		margin: 20px;
	}
	}
	@media (max-width: 768px) {
	.resolution__title {
		font-size: 30px;
	}
	.resolution__sub {
		font-size: 12px;
	}
	.resolution__subject {
		font-size: 14px;
	}
	.resolution__lead {
		font-size: 16px;
	}
	}
	@media (max-width: 500px) {
	.resolution__wrapper {
		flex-direction: column;
	}
	.resolution__inner {
		margin-bottom: 30px;
	}
	.resolution__title {
		font-size: 27px;
	}
	.resolution__sub {
		width: 200px;
		font-size: 14px;
	}
	.resolution__subject {
		font-size: 14px;
	}
	.resolution__lead {
		font-size: 20px;
	}
	.resolution__btn {
		width: 169px;
		flex-shrink: 0;
		font-size: 15px;
	}
	}
	.documents-more {
	margin-top: 60px;
	}
	.documents-more__title {
	font-size: 26px;
	font-family: Arial;
	color: #1b1b1b;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
	margin-bottom: 40px;
	width: 100%;
	}
	.documents-more__subtitle {
	font-size: 15px;
	font-family: Roboto;
	color: gray;
	font-weight: 300;
	line-height: 28px;
	text-align: center;
	margin-bottom: 40px;
	padding-right: 20px;
	}
	.documents-more__content {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	}
	.documents-more__cnt {
	display: flex;
	justify-content: center;
	}
	.documents-more__btn {
	padding: 10px 15px;
	/* margin-top: 37px; */
	border: none;
	color: #11316e;
	text-align: center;
	font-family: Arial;
	font-size: 16px;
	font-weight: 400;
	line-height: 18.4px;
	border-radius: 4px;
	border: 1px solid #11316e;
	transition: 0.5s ease;
	}
	.documents-more__btn:hover {
	background: #135076;
	color: #fff;
	}
	@media screen and (max-width: 768px) {
	.documents-more__title {
		font-size: 30px;
		width: 600px;
	}
	.documents-more__content {
		width: 600px;
	}
	.documents-more__subtitle {
		font-size: 14px;
	}
	.documents-more__btn {
		width: 250px;
		padding: 15px 35px;
		font-size: 15px;
	}
	}
	@media screen and (max-width: 426px) {
	.documents-more__title {
		font-size: 24px;
		width: 400px;
	}
	.documents-more__content {
		flex-direction: column;
		margin-top: 20px;
	}
	.documents-more__subtitle {
		font-size: 12px;
	}
	}
	@media screen and (max-width: 426px) {
	.documents-more__title {
		width: 300px;
	}
	}

	#photogallery .container {
	max-width: 1200px;
	}

	.photogallery {
	margin-top: 60px;
	}
	/* .photogallery-pic {
	margin-top: 15px;
	width: 185px;
	height: 138px;
	-o-object-fit: cover;
	object-fit: cover;
	} */

	.photogallery__pic {
	margin-top: 20px;
	width: 300px;
	height: 220px;
	border-radius: 3px;
	object-fit: cover;
	}

	.photogallery__card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	}

	.photogallery__title {
	color: #1b1b1b;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	}

	.photogallery-pic {
	margin-top: 30px;
	width: 400px;
	height: 250px;
	border-radius: 5px;
	object-fit: cover;
	}

	@media (max-width: 1024px) {
	.photogallery__title {
		font-size: 30px;
	}
	}

	@media (max-width: 768px) {
	.photogallery {
		justify-content: center;
	}

	.photogallery__title {
		font-size: 27px;
	}

	.photogallery__card {
		justify-content: center;
		align-items: center;
	}

	.photogallery-pic {
		margin-left: 0;
		width: 300px;
		height: 200px;
	}
	}

	@media (max-width: 425px) {
	.photogallery__title {
		font-size: 23px;
	}
	}

	table {
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-spacing: 0;
	}

	.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 #11316e;
	background: transparent;
	padding: 10px;
	transition: 0.3s linear;
	}

	.documentsMore__download:hover {
	background: #11316e;
	}

	.documentsMore__download a {
	color: #11316e;
	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: #000;
	font-family: Arial;
	font-weight: 400;
	font-size: 14px;
	}

	.documentsMore__location {
	color: #000;
	font-family: Arial;
	font-weight: 400;
	font-size: 14px;
	}

	svg {
	background-color: #d0d0d0;
	padding: 7px 5px;
	border-radius: 4px;
	cursor: pointer;
	width: 1.5em;
	height: 1.5em;
	}

	.documentsMore__copy {
	display: none;
	background: #252525;
	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: #11316e;
	font-family: Arial;
	font-size: 26px;
	font-weight: 700;
	line-height: 27px;
	}
