.text-points {
	padding: 50px 0;
}

.text-points-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

.text-points__title {
	text-align: center;
	margin: 0 auto 30px auto;
}

.text-points__buttons {
	text-align: center;
	margin: 30px auto 0 auto;
}

.text-point {
	width: 33%;
	padding: 30px;
	box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 1.4;
}

.text-point p {
	margin: 0;
}

@media screen and (max-width: 992px) {
	.text-points-wrap {
		flex-wrap: wrap;
	}
	.text-point {
		width: 50%;
	}
}

@media screen and (max-width: 768px) {
	.text-point {
		max-width: 500px;
		width: 100%;
		padding: 20px 10px;
	}
}