.service-price {
	width: 100%;
}
.service-price__item {
    text-align: center;
    margin-bottom: 45px;
}
.service-price__row {
	width: 100%;
	margin: 0 auto;
    max-width: 190px;
}
.service-price__item a {
	text-decoration: none;
}
.service-price__img {
	width: 100%;
	display: block;
}
.service-price__name {
    color: #000;
    margin: 8px 0;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
}
.service-price__border {
    height: 1px;
    width: 140px;
    margin-bottom: 0;
    display: inline-block;
    background-color: #dfdfdf;
}

@media (min-width: 768px) {
	.service-price {
	    display: flex;
    	flex-wrap: wrap;
    	justify-content: space-between;
	}
	.service-price__item {
		width: 48%;
		flex: 0 0 48%;
		max-width: 48%;
	}
}
@media(min-width: 992px) {
	.service-price {
	    justify-content: flex-start;
	}
	.service-price__item {
		width: 33.3%;
		flex: 0 0 33.3%;
		max-width: 33.3%;
	}
}
@media(min-width: 1200px) {
	.service-price__item {
		width: 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}