.services-page {
	display: flex;
	flex-direction: column;
}
.services-page__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 280px;
	height: 270px;
	border: 1px #ededed solid;
	background-color: #f5f6f7;
	margin-bottom: 20px;
}
.services-page__item strong {
	margin-bottom: 10px;
	cursor: pointer;
}
.services-page__item p {
	width: 90%;
}
.services-page__item img {
	width: 80px;
	margin: 15px 0;
	cursor: pointer;
}
.services-page__item button {
	margin-bottom: 20px;
	width: 170px;
	height: 50px;
	font-size: 16px;
	color: white;
	background-color: #373737;
	border: none;
	outline: none;
	cursor: pointer;
}
.services-page__row {
	justify-content: space-around;
	display: flex;
}
.services-page__row-ur {
	justify-content: space-between;
	display: flex;
}
.services-page__row-ur div{
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.services-page__row {
		flex-direction: column;
		align-items: center;
	}
	.services-page__row-ur {
		flex-direction: column;
		align-items: center;
	}
}