.service-box {
    /* margin: 15px 10px auto 15px; */
    text-align: center;
    transition: all 0.5s;
}
.service-box .icon img {
    height: auto;
    max-width: 100%;
}
.service-box .icon {
    width: 80px;
    margin: auto;
    padding: 15px;
    text-align: center;
    border-radius: 50%;
    background-color: #195fab;
    position: relative;
    top: 26px;
    z-index: 3;
    left: 35%;
}
.service-box .icon:before {
    transition: all 0.5s;
    content: " ";
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #195fab;
    opacity: .6;
    z-index: -1;
}

.service-box:hover .icon:before {
    width: 120px;
    height: 120px;
}
.service-box .img-in {
    position: relative;
    margin-top: -20px;
    border-radius: 10px;
}
.service-box .img-in img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    border-radius: 10px;
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
}

.service-box:hover .img-in img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.img-icon-box-content {
  padding: 0 20px;
}
.service-box a.title {
    font-size: 21px;
    font-weight: 700;
    margin: 10px auto 12px auto;
    display: block;
    position: relative;
    color: #393939;
    text-transform: uppercase;
}
.service-box a.title:before {
    transition: all 0.5s;
    content: " ";
    display: block;
    position: absolute;
    bottom: -15px;
    z-index: -1;
    height: 10px;
    border-radius: 15px;
    width: 0px;
    margin: auto;
    background-color: #9e1d20;
    opacity: .7;
    left: 0;
    right: 0;
}
.service-box:hover a.title:before {
    width: 100px;
  
}
.service-box .wasf {
    font-size: 13px;
    font-weight: 500;
    color: #666363;
    margin-bottom: 10px;
}

.service-box a.more {
    color: #f00022;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.service-box a.title:hover {
    color: #9e1d20 !important;
    text-decoration: none;
}