.fl-navigation {
	padding: 40px 0 59px;
	background-color: #000;
}

.fl-navigation .container {
	max-width: 1370px;
}

.fl-navigation__wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.fl-navigation__descr {
	width: calc( 100% - 389px );
	padding-right: 120px;
}

.fl-navigation__title {
	margin: 0 0 34px;
	color: #fff;
	font-family: var(--font-primary);
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	text-transform: uppercase;
	max-width: 900px;
}

.fl-navigation__descr .html-content {
	color: #fff;
	max-width: 827px;
}

.fl-navigation__descr .html-content strong {
	display: block;
	text-transform: uppercase;
	color: #6494B8;
	font-size: 12px;
	margin-bottom: 10px;
}

.fl-navigation__btn {
	text-align: center;
	margin: 51px auto 0;
}


.fl-navigation__italic {
	text-align: center;
	margin-top: 30px;
	font-family: var(--font-italic);
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	font-style: italic;
	color: #fff;
}


.fl-navigation__right {
	width: 389px;
	position: relative;
	padding-left: 53px;
	padding-top: 4px;
}

.fl-navigation__right::before {
	width: 1px;
	height: calc( 100% + 99px);
	top: -40px;
	position: absolute;
	content: '';
	background-color: #5C5C5C;
	left: 4px;
}

.fl-navigation__right--title {
	font-size: 22px;
	line-height: 26px;
	text-transform: uppercase;
	text-align: left;
	color: #fff;
	font-family: var(--font-primary);
	margin-bottom: 30px;
}

.fl-navigation__item {
	margin-bottom: 25px;
}

.fl-navigation__item:last-child {
	margin-bottom: 0;
}

.fl-navigation__item a {
	display: block;
	font-size: 12px;
	line-height: 26px;
	font-family: var(--font-secondary);
	font-weight: 600;
	color: #DFDFDF;
	position: relative;
	transition: var(--transition);
	text-decoration: none !important;
	text-transform: uppercase;
}

.fl-navigation__item a:hover,
.fl-navigation__item.active a {
	color: #6494B8;
	text-shadow: 0 0 .01px #6494B8, 0 0 .01px #6494B8, 0 0 .01px #6494B8;
}

.fl-navigation__item a::before {
	position: absolute;
	content: '';
	left: -51px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #5C5C5C;
	border-radius: 50%;
	width: 5px;
	height: 5px;
	transition: all .2s ease-out;
}

.fl-navigation__item a:hover::before,
.fl-navigation__item.active a::before {
	width: 8px;
	height: 8px;
	background-color: #6494B8;
	left: -52.5px;
}

@media screen and (max-width: 1199px) {

	.fl-navigation {
		padding: 40px 0;
	}

	.fl-navigation__descr {
		padding-right: 30px;
	}

	.fl-navigation__title {
		max-width: 100%;
		font-size: 24px;
		margin-bottom: 0 0 30px;
	}

	.fl-navigation__descr .html-content {
		max-width: 100%;
	}

	.fl-navigation__right {
		padding-top: 0;
		padding-left: 30px;
	}

	.fl-navigation__right--title {
		margin-bottom: 20px;
		font-size: 20px;
	}

	.fl-navigation__right::before {
		height: calc( 100% + 80px );
	}

	.fl-navigation__item a::before {
		left: -28px;
	}

	.fl-navigation__item a:hover::before,
	.fl-navigation__item.active a::before {
		left: -30px;
	}

	.fl-navigation__item {
		margin-bottom: 20px;
	}

	@media screen and (max-width: 992px) {
		.fl-navigation {
			padding: 30px 0 40px;
		}

		.fl-navigation__descr {
			width: 100%;
			padding-right: 0;
			margin-bottom: 50px;
		}

		.fl-navigation__btn {
			margin: 30px auto 0;
		}

		.fl-navigation__right {
			width: 100%;
		}

		.fl-navigation__right::before {
			height: 100%;
			top: 0;
		}
	}


}

