        .services-area {
    background-color: #eef3f7;
        padding: 120px 0;
}
.site-heading {
    margin-bottom: 60px;
}
.site-heading h5 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 18px;
    color: #1a01ff;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.site-heading .area-title {
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 38px;
    color: #051242;
    line-height: 1;
}
.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #1a01ff;
    width: 90px;
    overflow: hidden;
}
.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}
.site-heading p {
    font-size: 16px;
}
.services-single-item {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 40px 50px 40px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 500ms ease;
    z-index: 2;
}
.services-icon {
    position: relative;
    height: 130px;
    width: 130px;
    background-color: #eef3f7;
    border-radius: 50%;
    font-size: 65px;
    color: #1d42d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 500ms ease;
    transition-delay: 400ms;
    z-index: 2;
}
.services-icon:before {
    position: absolute;
    top: -20px;
    bottom: -17px;
    left: 61px;
    content: '';
    width: 2px;
    background-color: #1d42d9;
    z-index: -1;
}
.services-icon:after {
    position: absolute;
    top: -15px;
    bottom: -22px;
    right: 61px;
    content: '';
    width: 2px;
    background-color: #1d42d9;
    z-index: -1;
}
.services-icon:before, .services-icon:after {
    opacity: 0;
    transition: all 500ms ease;
}
.services-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 26px;
    margin-bottom: 16px;
}
.services-title a {
    color: #051242;
    transition: all 500ms ease;
}
.services-text {
    margin: 0;
    padding-bottom: 20px;
}
.services-arrow {
    position: relative;
    display: block;
}
.services-arrow a {
    position: relative;
    height: 63px;
    width: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    background-color: #eef3f7;
    margin: 0 auto;
    transition: all 500ms ease;
    z-index: 1;
}
.services-single-item.active .services-icon, .services-single-item:hover .services-icon {
    background-color: #1d42d9;
    color: #fff;
}
.services-single-item.active .services-arrow a, .services-single-item:hover .services-arrow a {
    background-color: #f14d5d;
    color: #fff;
}

.services-single-item.active .services-icon:before, .services-single-item.active .services-icon:after, .services-single-item:hover .services-icon:before, .services-single-item:hover .services-icon:after {
    transform: rotate(45deg);
    opacity: 1;
  
    transition-delay: 500ms;
}
.a
