.card-info {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 30px 20px;
	border-radius: 20px;
	color: var(--black);
	background-color: #EAF2FA;
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.1)), to(rgba(31, 150, 239, 0.1)));
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(31, 150, 239, 0.1));
}
.card-info__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}
.card-info__img {
	width: 50px;
	height: 40px;
}
.card-info__name {
	color: #012597;
	font: var(--base-size-subtitle);
}
.card-info__hr {
	--color: #BACDEA;
	-webkit-transform: none !important;
	transform: none !important;
	opacity: 1 !important;
	margin-bottom: 24px;
}
.card-info p:not([class]) {
	margin: 0;
	font: var(--base-size-text);
	font-weight: 500;
	line-height: 1.5;
}
@media (min-width: 1200px) {
	.card-info {
		padding: 40px 24px 35px;
		border-radius: 30px;
	}
	.card-info__header {
		gap: 40px;
	}
	.card-info__img {
		width: 85px;
		height: 70px;
	}
}
.edo-step-item {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.edo-step-item__img-wrap {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px;
	border-radius: 50%;
	background-color: #EAF2FA;
}
.edo-step-item__img {
	width: 40px;
	height: 40px;
}
.edo-step-item__name {
	display: inline-block;
	margin-bottom: 15px;
	gap: 30px;
	color: #012597;
	font: var(--base-size-subtitle);
}
@property --link-bg-bottom {
  syntax: "<color>";
  initial-value: #1F96EF;
  inherits: true;
}
.list-edo .link {
	--link-bg-bottom: var(--sky);
	background-image: linear-gradient(
		0deg, 
		transparent 0, 
		transparent 0.07em, 
		var(--link-bg-bottom) 0.07em, 
		var(--link-bg-bottom) calc(0.07em + 1px), 
		transparent calc(0.07em + 1px), 
		transparent 100%);
	transition: --link-bg-bottom var(--tr-speed) var(--tr-ease), all var(--tr-speed) var(--tr-ease);
}
.list-edo .link:hover {
	--link-bg-bottom: transparent;
}
.edo-step-item__text {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	display: block;
	color: var(--black);
	font: var(--base-size-text);
}
@media (max-width: 767px) {
	.edo-step-item__name {
		margin: 8px 0;
	}
}
@media (min-width: 768px) {
	.edo-step-item__img-wrap {
		padding: 30px;
	}
	.edo-step-item__img {
		width: 60px;
		height: 60px;
	}
}
@media (min-width: 1400px) {
	.edo-step-item__name {
		min-height: 4.5em;
	}
	.edo-step-item__img-wrap {
		padding: 40px;
	}
	.edo-step-item__img {
		width: 70px;
		height: 70px;
	}
}
.list-edo {
	padding: 15px 0;
	margin: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	min-width: 0;
	min-height: 0;
}
.list-edo > li {
	min-width: 0;
}
@media (min-width: 768px) {
	.list-edo {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1200px) {
	.list-edo.list-edo--card {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1400px) {
	.list-edo {
		gap: 40px;
		grid-template-columns: repeat(4, 1fr);
	}
}