.service-item.style-1 {
    position: relative;
    z-index: 9;
    padding: 50px;
    margin-top: 150px;
}

.service-item.style-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    transform: skewY(10deg);
    border-radius: 30px;
    box-shadow: 0 10px 35px 0 rgba(92.99999999999996, 72.00000000000001, 223, .08);
    transition: all .5s ease-in;
}


.service-item.style-1 .service-images {
    width: 200px;
    margin: 0 auto;
    margin-top: -150px;
}

.service-item.style-1 .service-desc {
    padding-top: 30px;
}

 h4 {
    font-size: 22px;
    font-weight: 600;
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    display: flex;
    background-image: linear-gradient(to bottom, rgba(29, 47, 209, 0.95), rgba(63, 55, 151, 0.95), rgba(83, 49, 177, 0.90), rgba(114, 48, 205, 0.85), rgba(150, 41, 230, 0.95));
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    bottom: -40px;
    border: 10px solid #fff;
    background-size: 150% 100%;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.service-item .service-btn:hover{
    transform: rotate(-45deg)
}

.service-item.style-1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: .5; */
    background-image: linear-gradient(to bottom, rgba(29, 47, 209, 0.95), rgba(63, 55, 151, 0.95), rgba(83, 49, 177, 0.90), rgba(114, 48, 205, 0.85), rgba(150, 41, 230, 0.95));
    z-index: -9;
    transform: scale(0) skewY(10deg);
    border-radius: 30px;
    transition: all .4s ease-in-out;
}

.service-item.style-1:hover:after{
    transform: scale(1) skewY(-10deg);
}

.service-item.style-1:hover .service-desc{
    color: #fff;

}

.service-item.style-1:hover:before {
    transform: skewY(10deg);
}
.service-item .service-btn:hover, .service-item .service-btn:focus {
    color: #ffffff;
    background-position: 100% 0;
}


