.road-cards {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	padding: 20px 25px;
	gap: 10px 20px;
	background: #F3F7F9;
	overflow: hidden;
}

.road-card {
	width: 114px;
	border-radius: 8px;
	overflow: hidden;
}

.road-card__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	background: #E3E8F5;
	position: relative;
	z-index: 2;
}

.road-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 80px;
	padding: 5px 10px;
	background: #fff;
	position: relative;
	z-index: 3;
}

.road-card__num {
	width: 16px;
	height: 16px;
	background: #E3E8F5;
	font-family: RotonBol, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #FF8300;
	border-radius: 50%;
	text-align: center;
}

.road-card__title {
	margin-top: 5px;
	font-family: RotonBol, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 16px;
	color: #27388A;
	text-align: center;
}

.road-cards__bg {
	/* position: absolute;
	z-index: 5;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(243, 247, 249, 0.2);
	pointer-events: none; */

	/* position: absolute;
	z-index: 7;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('/static/f/article/1473/img/line-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 75px 0px;
	opacity: 1;
	pointer-events: none; */

	display: none;
}

.road-cards__line {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('/static/f/article/1473/img/line-bg.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 75px 0px;
	opacity: 0.1;
	pointer-events: none;
}





.df-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
	gap: 6px 10px;
}

.df-card {
	width: calc((100% - 10px) / 2);
	padding: 20px 10px;
	border-radius: 8px;
}

.df-card--blue {
	background: #F3F7F9;
}

.df-card--orange {
	background: #FFF3E6;
}

.df-card__icon {
	height: 48px;
}
.df-card__text {
	margin-top: 10px;
}
.b-article p.df-card__text {
	margin-bottom: 0px;
}

.df-card--blue span {
	color: #27388A
}

.df-card--orange span {
	color: #F9AB5E;
}

.b-article-content__list li {
	color: #27388A;
}

.b-article .b-spoiler--faq p {
	margin-top: 10px;
	margin-bottom: 10px;
}


@media screen and (max-width: 767px) {
	.b-article .b-article__subtitle {
		margin-top: 30px;
	}
}


@media screen and (max-width: 459px) {
	.road-cards {
		padding: 20px 16px;
		gap: 0;
	}
	.road-card {
		display: flex;
		width: 100%;
	}
	.road-card + .road-card {
		margin-top: 8px;
	}
	.road-card__icon {
		width: 80px;
		height: 50px;
		padding: 4px;
	}
	.road-card__body {
		width: 100%;
		height: 100%;
		flex-direction: row;
		align-items: center;
	}
	.road-card__num {
		display: none;
	}
	.road-card__title {
		margin-top: 0px;
		padding-left: 6px;
	}
	.road-cards__line {
		/* background-image: url('/static/f/article/1473/img/line-bg-mob.png'); */
		background-image: none;
		background-position: 0px 0px;
	}


	.df-card {
		width: 100%;
		padding-bottom: 10px;
	}
}