.services {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

.services-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.services-item img {
  width: 100%;
	border-radius: 4px;
}

.services-item__title {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.services-item__title h3 {
	font-family: Literata;
	font-weight: 600;
	font-size: 32px;
	line-height: 125%;
	color: #857040;
	margin: 0;
}

.services-item__title a {
  text-decoration: none;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}

.services-item__btn {
	text-decoration: none;
	background-color: #52b788;
	color: #fff;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	display: flex;
	align-items: end;
	padding: 10px 20px;
	border-radius: 4px;
	width: fit-content;
}

@media (max-width: 992px) {
	.services-layout {
		grid-template-columns: 1fr;
	}
}
