.service__box-3 .service-image {
  height: 440px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #eee;
  position: relative;
}

.service__box-2 {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all ease .3s;
    overflow: hidden;
    margin-bottom: 40px;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.service__image {
    height: 380px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.service__box-2.rounded .service__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 30px auto 20px auto;
}
.service__image svg {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
}
.service__box-2.rounded .service__image svg {
    display: none;
}
.service__box-2 .service__name {
    font-size: 20px;
    margin: 10px 10px 0 10px;
}
.service__box-2 .service__price {
    font-size: 14px;
    margin-bottom: 18px;
}
.service__box-2 .service__link {
    border-top: 1px solid #eee;
    display: block;
    padding: 15px 30px;
    position: relative;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.service__box-2 .service__link svg {
    width: 15px;
    height: 15px; 
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.service__box-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px -10px rgba(126, 126, 126, 0.1);
}
.service__box-2:hover .service__link { 
    color: #fff;
}
.service__box-2:hover .service__link svg {
    fill: #fff;
}

.service__box .service__info {
    background: #fff;
}