.how__section {
	padding: 25px 0;
	margin: 25px 0;
}

.how__titles {
	margin: 0 0 15px 0;
}

.how__title {
	display: block;
	font-family: "Days One", sans-serif;
	font-size: 24px;
	font-weight: 400;
}

.how__description {
	display: block;
	font-family: Murecho, sans-serif;
	font-size: 16px;
	color: rgb(117, 119, 119);
	font-weight: 400;
	text-transform: lowercase;
}

.how__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 20px;
}

.how__item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
	counter-increment: item;
	border-radius: 25px 25px 0 0;
}

.how__item.active_link {
	cursor: pointer;
}

.how__item.active_link img {
	transition: all 0.3s ease;
}

.how__item.active_link:hover img {
	transform: scale(1.1);
}

.how__image {
	width: 100%;
	height: 100%;
	border-radius: 25px;
	overflow: hidden;
}

.how__image img {
	width: 100%;
	height: 100%;
}

.how__content {
	display: flex;
	gap: 20px;
	margin-top: -60px;
	z-index: 9;
}

.how__content--number {
	background: white;
	margin: -1px;
	height: fit-content;
}

.how__content--number:before {
	content: counter(item);
	font-family: "Days One", sans-serif;
	font-weight: 400;
	font-size: 34px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #77d14d;
	border: 5px solid #77d14d;
	width: 50px;
	min-width: 50px;
	height: 50px;
	background: white;
	margin: 5px 5px 0 1px;
	padding: 25px;
}

.how__name {
	font-family: "Murecho", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 30px 0;
}

.how__text {
	font-family: "Murecho", sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #757777;
}



@media (min-width: 992px) {
	.how__section {
		padding: 50px 0;
		margin: 50px 0;
	}

	.how__titles {
		margin: 0 0 25px 0;
	}

	.how__title {
		font-size: 42px;
	}

	.how__description {
		font-size: 18px;
	}

	.how__items {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 35px;
	}

	.how__item:last-child {
		grid-column: 1 / 3;
		margin: 0 auto;
		width: 50%;
	}

	.how__image {
		height: 250px;
	}

	.how__image img {
		height: 250px;
		object-fit: cover;
	}

	.how__name {
		font-size: 24px;
	}

	.how__item:before {
		min-width: 75px;
		height: 75px;
	}
}