.news-page {
	margin-bottom: 80px;
}
.news-page__container {
	display: flex;
}
.news-page__nav {
	max-width: 24%;
	width: 100%;
}
.news-page__item:first-child .item-news-page {
	padding-top: 11px;
}
.nav-news ul li {
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	color: #969696;
	transition: all .5s;
}
.nav-news ul li.active {
	color: #0063A8;
}
.nav-news ul li:not(:last-child) {
	margin-bottom: 30px;
}
.nav-news__name {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 30px;
	text-transform: uppercase;
}
.item-news-page {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 20px 0;
	border-bottom: 2px solid #969696;
}
.item-news-page__img {
	width: 100%;
	max-width: 420px;
	flex: 0 0 100%;
	position: relative;
}
.item-news-page__img::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 99, 168, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s;
	opacity: 0;
}
.item-news-page__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-news-page__name {
	font-weight: 500;
	font-size: 30px;
	line-height: 130%;
	text-transform: uppercase;
	margin-bottom: 20px;
	transition: all .5s;
}
.item-news-page__text {
	font-size: 20px;
	line-height: 130%;
	margin-bottom: 20px;
}
.item-news-page__date {
	font-size: 18px;
	line-height: 100%;
	color: #969696;
}
.news-page__items .title-block__link {
	margin-top: 40px;
	justify-content: end;
}

@media (max-width: 991.98px) {
	.news-page__container {
		flex-direction: column;
	}
	.news-page__nav {
		max-width: 100%;
		margin-bottom: 40px;
	}
	.nav-news__name {
		margin-bottom: 20px;
	}
	.nav-news ul {
		width: 100%;
		display: flex;
		gap: 20px;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	.nav-news ul li {
		white-space: nowrap;
		font-size: 18px;
	}
	.nav-news ul li:not(:last-child) {
		margin-bottom: 0;
	}
	.item-news-page__name {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.news-page {
		margin-bottom: 60px;
	}
}

@media (max-width: 768.98px) {
	.item-news-page {
		flex-direction: column;
		gap: 20px;
	}
	.item-news-page__img {
		max-width: 100%;
	}
	.news-page__item:first-child .item-news-page {
		padding-top: 0;
	}
	.item-news-page__name {
		font-size: 18px;
	}
	.item-news-page__text {
		font-size: 16px;
	}
	.item-news-page__date {
		font-size: 16px;
	}
}