.card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.card p {
	margin: 0;
}
.card_item {
	min-height: 277px;
	padding: 24px;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.card__title {
	margin: 0;
}
.card__text {
	color: #3E4664;
	font-family: var(--font);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
.card__image {
	height: 228px;
	object-fit: cover;
	border-radius: 8px;
}
.card_item {
	grid-column: span 2;
	border-radius: 16px;
	background-color: #FFFFFF;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}
.card_category {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 16px;
	border: 1px solid #DDE1EC;
	background: #FFFFFF;
}

.card_point .card__icon {
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 8px;
	background-color: #FFF5E9;
}

.card_unroll {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #C1C8DF;
	cursor: pointer;
}
.card_unroll.card_active {
  border: 1px solid #FF9142;
}
.card_unroll .card__description {
	display: none;
}
.card_unroll.card_active .card__description {
	display: block;
}

.card_step {
}
/* .card_step .card__header {
	margin-bottom: 16px;
} */
.card_step .card__icon {
	background: #FF7800;
	width: 45px;
	height: 45px;
	display: inline-flex;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 27px */
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #FFFFFF;
}

.card_smallicon {
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: flex-start;
	align-items: flex-start;
}
.card_smallicon .card__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.cards {
	display: grid;
}
.cards_trust {
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 8px;
}
.cards_trust > .card {
	padding: 24px;
	border-radius: 16px;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	background-color: var(--blue_light);
}
.cards_trust > .card.card_img {
	padding: 0;
	overflow: hidden;
}

@media (min-width: 576px) {
	/* 1 в ряду для 2 */
	.card_item:last-child:nth-child(2n - 1) {
		grid-column-end: 4;
	}
	.card__text {
		font-size: 18px;
	}

	.card__header_lined {
		position: relative;
	}
	.card__header_lined:after {
		position: absolute;
		top: 50%;
		left: 54px;
		right: 0;
		height: 1px;
		content: '';
		background-color: #C1C8DF;
	}

	.card_smallicon {
		flex-direction: column;
	}

	.cards_trust {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 190px 128px auto;
		gap: 16px;
	}
	.cards_trust > .card {
		padding: 32px;
		border-radius: 24px;
	}
	.cards_trust > .card.card_wide,
	.cards_trust > .card.card_img {
		grid-column: span 2;
	}
	.cards_trust > .card.card_wide {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 24px;
	}
}

@media (min-width: 992px)  {
	.card_item {
		min-height: 277px;
	}
	.card_category {
		min-height: 386px;
	}
	/* 2 в ряду для 3 */
	.card_item:last-child:nth-child(3n - 1) {
		grid-column-end: -2;
	}
	.card_item:nth-last-child(2):nth-child(3n + 1) {
		grid-column-end: 4;
	}
	/* 1 в ряду для 3 */
	.card_item:last-child:nth-child(3n - 2) {
		grid-column-end: 5;
	}
	/* .card__title {
		max-width: 80%;
	} */
	.card__header_lined:after {
		right: -39px;
	}

	.card_smallicon {
		flex-direction: row;
	}
}

@media (min-width: 1200px)  {
	.cards_trust {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 230px 154px;
		gap: 16px;
	}
	.cards_trust > .card.card_wide {
		order: 10;
	}
	.cards_trust > .card.card_img {
		grid-column: span 2;
		grid-row: span 2;
	}
}