.service-wrapper{
  padding:2rem 0;
  display:flex;
  justify-content:center;align-items:center;
}
.service-container{
  width:100%;
  max-width: 1500px;
}
.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
.services__service {
  color:#474747;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 1rem 0;
  width: 25%;
  cursor:pointer;
}
.services__service:hover{
  text-decoration:none;
  color:#000;
}
.service__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  max-width: 250px;
  padding: 10px;
  width: 100%;
  max-height:360px;  
}

.service__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 0 1rem;
  text-align: center;
  word-break: break-word;
}
.icon-josh{

}
.service__text h6{
  font-size:18px;
  min-height:50px;  
}
.service-wrapper .service__text{
  display: flex;
  flex-direction: column;
}
.service-wrapper .service-item-btn-section{
  margin-top: auto;
}
@media screen and (max-width:800px){
  .services__service{
    width:50%;
  }
  @media screen and (max-width:480px){
    .services__service{
      width:100%;
    }
  }
