.mk-steps *,
.mk-steps *::before,
.mk-steps *::after {
	box-sizing: border-box;
}

.mk-steps {
	padding: 48px 24px;
	font-family: 'Nunito Sans', 'Open Sans', sans-serif;
	color: var(--mk-fg-secondary, #5b5b49);
	max-width: 1376px;
    margin: 0 auto;
}

.mk-steps__title {
	margin: 0 0 40px;
	font-family: 'Nunito', 'Nunito Sans', sans-serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--mk-fg-secondary, #5b5b49);
}

.mk-steps__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.mk-steps__text{
	margin-top: 24px;
}

.mk-steps__text p:last-of-type {
    font-size: 22px;
	margin-top: 24px;
	font-weight: 500;
}

.mk-steps__desc {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.7;
}

.mk-steps__callout {
	margin: 0;
	padding: 0 0 0 16px;
	border-left: 3px solid #ce6832;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.mk-steps__list {
	display: flex;
	flex-direction: column;
	position: relative;
  	z-index: 1;
	gap: 20px;
}

.mk-steps__list::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -25px;
    width: 94px;
    height: 80%;
    background-image: url(/catalog/view/theme/default/image/mamakupi/vector.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: -1;
}

.mk-steps__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.mk-steps__num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #7a8c28;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position:relative;
	z-index: 10;
	background: #fff;
}

.mk-steps__item-text {
	margin: 6px 0 16px;
	font-size: 15px;
	line-height: 1.6;
}

.mk-steps__item:last-child .mk-steps__item-text {
	margin-bottom: 0;
}

.mk-steps__connector {
	display: flex;
	justify-content: flex-end;
	padding: 0 16px 0 52px;
}

.mk-steps__connector img {
	width: 52px;
	height: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
	.mk-steps__body {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.mk-steps__title {
		font-size: 28px;
	}
}

@media (max-width: 575px) {
	.mk-steps {
		padding: 32px 16px;
	}

	.mk-steps__title {
		font-size: 24px;
		margin-bottom: 28px;
	}

	.mk-steps__body {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.mk-steps--buy .mk-steps__body {
		gap: 20px;
	}

	.mk-steps__list::before{
		left: -20px;
	}
}
