.service-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0% 100%, 0 66%, 0 0);
    padding: 40px;
    text-align: center;
    position: relative;
}

.service-item:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.service-item:hover:before {
    height: 100% !important;
    z-index: -1;
}

.service-item:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-item .service-icon {
    max-width: 120px;
    font-size: 45px;
    margin-bottom: 20px;
}

.align-left .service-item .service-icon {
    margin-right: auto;
}

.align-center .service-item .service-icon {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.align-right .service-item .service-icon {
    margin-left: auto;
}

.service-item .service-icon img {
    width: 100%;
}

.service-item .service-icon i,
.service-item .service-icon img {
    transition: all 0.3s ease-in-out;
}

.service-item:hover .service-icon i,
.service-item:hover .service-icon img {
    transform: scale(1.05)rotate(10deg);
}

.service-content .service-heading {
    font-size: 24px;
    font-weight: 600;
}

.service-content .service-heading,
.service-content .service-heading a {
    color: #fff;
}

.service-content .service-heading a:hover {
    color: #fff;
}

.service-content p {
    margin: 0;
}