* {
    box-sizing: border-box;
}

.services {
    min-height: 100vh;
    width: 100%;
    float: left;
    padding: 100px 0;
}

.container {
    /* max-width: 1170px; */
    margin: auto;
}

.services .heading {
    margin-bottom: 60px;
    width: 100%;
    float: left;
}

.services .heading h1 {
    text-align: center;
    font-size: 40px;
    color: white !important;
    margin: 0;
}

.services .content {
    float: left;
    width: 100%;
}

.services .content .box {
    width: 33.33%;
    float: left;
    padding: 15px;
}

.services .content .box .inner {
    padding: 30px;
    text-align: center;
    position: relative;
    color: black;
    background-color: #5256BC;
}

.services .content .box .inner:hover {
    background-color: #5256BC;
    color: #fff !important;
    transition: .3s;
}

.services .content .box .inner::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    box-sizing: border-box;
    height: 0;
    border-bottom: 1px dashed transparent;
    border-left: 1px dashed transparent;
    transition: all .8s ease;
}

.services .content .box .inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    box-sizing: border-box;
    height: 0;
    border-top: 1px dashed transparent;
    border-right: 1px dashed transparent;
    transition: all .8s ease;
    color: #fff;
}

.services .content .box:hover .inner::after,
.services .content .box:hover .inner::before {
    border-color: #fff;
    width: 100%;
    height: 100%;
}

.services .content .box .inner .icon {
    font-size: 50px;
    color: white;
    transition: color .8s ease;
}

.services .content .box:hover .inner .icon {
    color: #3A3E98;
}
.services .content .box:hover .inner .card-text {
    color: #3A3E98;
}

.services .content .box .inner h3 {
    font-size: 20px;
    font-weight: normal;
    color: white;
    margin: 20px 0;
}

.services .content .box .inner p {
    font-size: 15px;
    color: #444444;
    line-height: 24px;
}

.counter-up {
    min-height: 150vh;
    background-size: cover;
    background-attachment: fixed;
    padding: 0 50px;
    position: relative;
    display: inline-block;
    align-items: center;
}

.counter-up::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.8); */
}


/*responsive*/

@media(max-width: 767px) {
    .services .content .box {
        width: 100%;
    }
}