.title h2 {
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}
.title h2::before{
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #44A1E5;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: -15px;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    border-radius: 50%;
}
.title h2::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #0267AF;
    position: absolute;
    right: 50%;
    margin-right: -10px;
    top: -15px;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    border-radius: 50%;
}
.about-sect .title h2::before,
.service-sect .title h2::before {
    left: 0;
    margin-left: unset;
}
.about-sect .title h2::after,
.service-sect .title h2::after {
    left: 12px;
    margin-left: unset;
}
.title span {
    display: none;
}
@media screen and (max-width: 1000px) {
    .about-sect .title h2::before,
    .service-sect .title h2::before {
        left: 50%;
        margin-left: -10px;
    }
    .about-sect .title h2::after,
    .service-sect .title h2::after {
        left: unset;
        right: 50%;
        margin-right: -10px;
    }
}