.about .aboutTitle {
    text-align: center;
    font-weight: bolder;
    color: #6a95cc;
    position: relative;
}

    .about .aboutTitle:after {
        position: absolute;
        content: " ";
        right: 0;
        top: 20px;
        width: 10%;
        height: 4px;
        background-color: #6a95cc;
    }

    .about .aboutTitle:before {
        position: absolute;
        content: " ";
        left: 0;
        top: 20px;
        width: 10%;
        height: 4px;
        background-color: #6a95cc;
    }

.about img {
    border-radius: 5px;
    transition: all .5s ease;
}

    .about img:hover {
        filter: brightness(70%);
    }

.about .services .fa-hand-point-down {
    animation: Translate 1s .8s ease infinite;
    color: #6a95cc;
}

.about .services li {
    position: relative;
    padding: 0 10px;
    margin: 30px auto;
}

.about h4 {
    color: #6a95cc;
}

.about .services span {
    position: absolute;
    top: -5px;
    bottom: 0;
    width: 30px;
    height: 30px;
    background-color: #cecdcf;
    color: #fff;
    border-radius: 50%;
    right: -40px;
    padding: 5px;
    text-align: center;
}

.about .services li:before {
    position: absolute;
    top: 7px;
    width: 20px;
    height: 4px;
    content: ' ';
    background-color: #cecdcf;
    right: -15px;
}

@media(max-width:991.98px) {
   
    .about .services li:before {
        display: none;
    }
    .about .aboutTitle:after, .about .aboutTitle:before {
        display:none;
    }
    .about .services li{
        margin:20px auto;
    }
}

@keyframes Translate {
    50% {
        transform: translateY(5px);
    }
}
