.algorithm__list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

.algorithm-card {
	width: 100%;
	position: relative;
}

.algorithm-card:not(:last-child) {
	margin-bottom: 30px;
}

.algorithm-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 15px;
	text-align: center;
}

.algorithm-card__icon {
	margin-bottom: 17px;
}

.algorithm-card__text {
	font-family: Roboto, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	color: #342918;
	opacity: 0.75;
	max-width: 180px;
}


@media (min-width: 576px) {
	.algorithm-card {
		width: 33.33%;
	}

	.algorithm-card:not(:last-child):after {
		width: 48px;
		right: -24px;
		content: "";
		position: absolute;
		top: 35px;
		height: 1px;
		background: #B48254;;
	}

	.algorithm-card__text {

		font-size: 14px;
		line-height: 18px;
	}


}

@media (min-width: 640px) {
	.algorithm-card:not(:last-child):after {
		width: 90px;
		right: -45px;
	}
}

@media (min-width: 768px) {
	.algorithm-card:not(:last-child):after {
		width: 90px;
		right: -45px;
	}

	.algorithm-card__icon {
		margin-bottom: 23px;
		height: 75px;
	}

	.algorithm-card__inner {
		padding: 0 50px;
	}
}

@media (min-width: 1024px) {
	.algorithm-card:not(:last-child):after {
		width: 180px;
		right: -90px;
	}

	.algorithm-card__text {
		font-size: 16px;
		line-height: 21px;
	}

	.algorithm-card__inner {
		padding: 0 50px;
	}
}

