
.services{
	margin-top: 58px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 5%;
}
.service{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service img{
	max-height: 152px;
	margin-bottom: 16px;
}
.service h5{
  text-align: center;
  margin: 0;
  max-width: 123px;
}
.service:hover h5{
  color: #5B94D0;
}
.services-container{
	padding-top: 92px;
	padding-bottom: 73px;
	position: relative;
}
.services-container::after{
	content: "";
	position: absolute;
	background-color: #F1F1F1;
	width: 100vw;
    height: calc(100% + 400px);
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
	z-index: -1;
}
.services-content{
	max-width: 50%;
}
@media (max-width: 1400px) {
	.services-container::after{
		top: -50px;
	}
}
@media (max-width: 1000px) {
	.services{
		grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 60px;
  }
}
@media (max-width: 850px) {
	.services-container{
		margin-top: 50px;
	}
  .services-container::after {
    top: 0;
  }

}
@media (max-width: 700px) {
	.services-content{
		max-width: 100%;
	}
}
@media (max-width: 560px) {
	.services{
		grid-template-columns: repeat(2, 1fr);
	}
}