.steps-title {
	font-family: Literata;
	font-weight: 700;
	font-size: 48px;
	line-height: 125%;
	margin: 0;
	padding-bottom: 60px;
	color: #1b593e;
}

.steps-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 60px;
	position: relative;
}

.steps-row::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 31px;
	height: 2px;
	background: #857040;
}

.steps-row__top::before {
	left: 10%;
}

.steps-row__bottom::before {
	right: 20%;
}

.steps-row__top .step {
	margin-left: 30%;
}

.steps-row__bottom .step {
	margin-left: 30%;
}

.step {
	display: flex;
	flex-direction: column;
	position: relative;
}

.step-icon {
	width: 59px;
	height: 59px;
	border: 2px solid #857040;
	border-radius: 50%;
	background: #fff;
	position: relative;
	margin-bottom: 16px;
	display: grid;
	place-items: center;
}

.step-icon svg {
	stroke: #b5925a;
	stroke-width: 1.6;
	fill: none;
}

.step-name {
	font-family: Literata;
	font-weight: 600;
	font-size: 32px;
	line-height: 125%;
	color: #857040;
	margin: 0 0 28px;
}

.step-desc {
	margin: 0;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}

/* отступ между рядами */
.steps-row + .steps-row {
	margin-top: 44px;
}

@media (max-width: 992px) {
  .steps-title {
    padding-bottom: 30px;
  }
	.steps-row {
		gap: 32px 40px;
	}
	.step-name {
		font-size: 20px;
    margin-bottom: 14px;
	}
  .step-desc {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
	.steps-row__top .step,
	.steps-row__bottom .step {
		margin: 0;
	}

	.step {
		align-items: center;
	}

	.steps-row + .steps-row {
		margin: 0;
	}

	.steps-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}
  .steps-row__top {
    margin-bottom: 28px;
  }
	.steps-row::before {
		display: none;
	}
	.step-icon {
		margin-bottom: 10px;
	}
	.step-name {
		font-size: 18px;
	}
	.step-desc {
		text-align: center;
	}
}
